1.字符串(字符串也是列表的一種)python
定義:單引號,雙引號,三個單引號或者三個雙引號引發來的 ide
字符串的訪問方式:根據索引編號訪問字符串:函數
字符串也是列表的一種spa
定義:單引號,雙引號,三個單引號或者三個雙引號引發來的 orm
2.字符串的訪問方式索引
(1)根據索引編號訪問ip
>>> name = "i am is KK" >>> name[0] 'i' >>> name[1] ' ' >>> name[2] 'a'
(2)遍歷訪問ci
>>> for i in name: ... print(i) ... i a m i s K K
3.字符串函數
字符串
(1)len函數 統計字符串函數的長度it
>>> len(name) 10
(2)max函數 字符串中最大的元素
>>> max(name) 's'
(3)min函數 字符串中最小的元素
>>> min(name) ' '
(4)cout函數 查詢子字符串的數量
>>> name 'i am is KK' >>> name.count('i') 2 >>> name.count(' ') 3
(5)index函數 獲取元素的索引
>>> name 'i am is KK' >>> name.index('i') 0 >>> name.index('a') 2
(6)find函數 查找元素的位置,不存在返回-1
>>> name.find('s') 6 >>> name.find('z') -1
(7)查找字符串中的第二個空格
>>> name 'i am is KK' >>> name.index(' ',name.index(' ')+1) 4
(8)startswith函數 以什麼開頭
>>> name.startswith('i') True >>> name.startswith('a') False
(9)endswith函數 以什麼結尾
>>> name.endswith('K') True >>> name.endswith('a') False
(10)isalnum函數 字母或者數字
>>> 'a'.isalnum() True >>> '@'.isalnum() False >>> '1'.isalnum() True
(11)isalpha函數 判斷是否是字母
>>> 'i'.isalpha() True >>> '1'.isalpha() False
(12)isdecimal函數 判斷是否是數字
>>> '1'.isdecimal() True >>> 'a'.isdecimal() False
(13)islower函數 判斷是否是小寫
>>> 'a'.islower() True >>> 'A'.islower() False
(14)isupper函數 判斷是否是大寫
>>> 'a'.isupper() False >>> 'A'.isupper() True
(15)join 函數 用子字符串把list鏈接起來
>>> a = ['a','b'] >>> ':'.join(a) 'a:b'
(16)split函數
>>> 'a:b:c'.split(':') ['a', 'b', 'c']
(17)upper函數 轉換成大寫
>>> 'a'.upper() 'A'
(18)lower函數 轉換成小寫
>>> 'A'.lower() 'a'
(19)replace函數 替換
>>> 'abc abc'.replace('abc','x') 'x x'
(20)strip函數 取出字符串先後的空字符
>>> 'a n\f\n'.strip() 'a n'
去除指定的字符
>>> 'a b c'.strip('a') ' b c' >>> 'a b c'.strip('a c') 'b'
(21)format函數
tpl模板
>>> tpl = 'my name is {0},and i\'m {1} years old!' >>> name = 'likuan' >>> age = 24 >>> tpl.format(name,age) "my name is likuan,and i'm 24 years old!"
使用format函數傳遞參數
>>> '{name}-{age}'.format(name='likuan',age=24) 'likuan-24'
4.判斷字符是否在字符串中
>>> 'a' in a True >>> 'a' not in a False
字符串的特性 (字符串也是不可變的,不能修改和刪除)
>>> a = "ab" >>> a[0] = 'a' Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'str' object does not support item assignment