['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']html
A = 'dog' print('It is a %s' % A ) # --> It is a dog # 格式符能夠是 %d整數 %f浮點數 print('%06d'% 1111) #-->001111 # 拿0補全6位,不寫0就是拿空格補全6位 print('%.3f' %1.2) #-->1.200 # 保留3位小數 print('It is a {}'.format(A) ) # --> It is a dog
關於format函數還能夠設置參數,傳遞對象:format多種用法python
當not和and及or在一塊兒運算時,優先級爲是not>and>orgit
<1>find
檢測 str 是否包含在 mystr中,若是是返回開始的索引值,不然返回-1mystr.find(str, start=0, end=len(mystr))
<2>index
跟find()方法同樣,只不過若是str不在 mystr中會報一個異常.mystr.index(str, start=0, end=len(mystr))
<3>count
返回 str在start和end之間 在 mystr裏面出現的次數mystr.count(str, start=0, end=len(mystr))
<4>replace
把 mystr 中的 str1 替換成 str2,若是 count 指定,則替換不超過 count 次.mystr.replace(str1, str2, mystr.count(str1))
<5>split
以 str 爲分隔符切片 mystr,若是 maxsplit有指定值,則僅分隔 maxsplit 個子字符串mystr.split(str=" ", 2)
<6>capitalize
把字符串的第一個字符大寫mystr.capitalize()
<7>title
把字符串的每一個單詞首字母大寫api
>>> a = "hello world" >>> a.title() 'Hello world'
<8>startswith
檢查字符串是不是以 hello 開頭, 是則返回 True,不然返回 Falsemystr.startswith(hello)
<9>endswith
檢查字符串是否以obj結束,若是是返回True,不然返回 False.mystr.endswith('.jpg')
<10>lower
轉換 mystr 中全部大寫字符爲小寫mystr.lower()
<11>upper
轉換 mystr 中的小寫字母爲大寫mystr.upper()
<12>ljust
返回一個原字符串左對齊,並使用空格填充至長度 width 的新字符串mystr.ljust(width)
<13>rjust
返回一個原字符串右對齊,並使用空格填充至長度 width 的新字符串mystr.rjust(width)
<14>center
返回一個原字符串居中,並使用空格填充至長度 width 的新字符串mystr.center(width)
<15>lstrip
刪除 mystr 左邊的空白字符mystr.lstrip()
<16>rstrip
刪除 mystr 字符串末尾的空白字符mystr.rstrip()
<17>strip
刪除mystr字符串兩端的空白字符async
>>> a = "\n\t hello \t\n" >>> a.strip() 'hello '
<18>rfind
相似於 find()函數,不過是從右邊開始查找.mystr.rfind(str, start=0,end=len(mystr) )
<19>rindex
相似於 index(),不過是從右邊開始.mystr.rindex( str, start=0,end=len(mystr))
<20>partition
把mystr以str分割成三部分,str前,str和str後mystr.partition(str)
<21>rpartition
相似於 partition()函數,不過是從右邊開始.mystr.rpartition(str)
<22>splitlines
按照行分隔,返回一個包含各行做爲元素的列表mystr.splitlines()
<23>isalpha
若是 mystr 全部字符都是字母 則返回 True,不然返回 Falsemystr.isalpha()
<24>isdigit
若是 mystr 只包含數字則返回 True 不然返回 False.mystr.isdigit()
<25>isalnum
若是 mystr 全部字符都是字母或數字則返回 True,不然返回 Falsemystr.isalnum()
<26>isspace
若是 mystr 中只包含空格,則返回 True,不然返回 False.mystr.isspace()
<27>join
mystr 中每一個元素後面插入str,構造出一個新的字符串mystr.join(str)
函數
查找元素("查"in, not in, index, count)spa
index和count與字符串中的用法相同 >>> a = ['a', 'b', 'c', 'a', 'b'] >>> a.index('a', 1, 3) # 注意是左閉右開區間 Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: 'a' is not in list >>> a.index('a', 1, 4) 3 >>> a.count('b') 2 >>> a.count('d') 0
del list[1]
list.pop()
還能夠指定位置刪除list.pop(0)
list.remove('dog')
排序(sort, reverse)
reverse方法是將list逆置list.reverse()
sort是將原list排序,a.sort(reverse=True)
# reverse=True 是對倒序排序
sorted是返回一個新列表
sorted和sort都有個參數key,key能夠是lambda函數,來指定排序排序規則code
>>> sorted(L, key=lambda x:x[1]) # 利用key按照每一個元素的1下標的子元素排序 [('a', 1), ('b', 2), ('c', 3), ('d', 4)]
查找元素orm
a = {'a':1} print(a.setdefault('b', 2)) # --> 2 # 找不添加到字典中 print(a.get('c')) # --> None # 找不到不報錯 print(a) # --> {'a': 1, 'b': 2}
刪除元素htm
a = {'a': 1, 'b': 2} del a['a'] # 刪除指定key del a # 刪除整個字典在內存裏清除 clear a # 清空字典,a={}
字典常見操做
<1>dict.len()
測量字典中,鍵值對的個數
<2>dict.keys()
返回一個包含字典全部KEY的列表
<3>dict.values()
返回一個包含字典全部value的列表
<4>dict.items()
返回一個包含全部(鍵,值)元祖的列表
- 後三個功for遍歷使用
enumerate() 函數用於將一個可遍歷的數據對象(如列表、元組或字符串)組合爲一個索引序列,同時列出數據和數據下標,通常用在 for 循環當中。
>>> chars = ['a', 'b', 'c', 'd'] >>> for i, chr in enumerate(chars): ... print i, chr # 輸出下標和對應的元素
集合是無序的,集合中的元素是惟一的,集合通常用於元組或者列表中的元素去重。
定義一個集合set1=set()
,注意:不能使用{}這是字典
set1 = {1, 2, 4, 5} set1.add(6) # 添加一個元素 set1.update("abcd") #是把要傳入的元素拆分,作爲個體傳入到集合中
刪除元素(remove,pop,discard)
set1.remove(22)
刪除集合中的元素 若是有 直接刪除 若是沒有 程序報錯set1.pop()
隨機刪除集合中的元素 若是set1沒有元素講程序報錯set1.discard(2)
若是元素存在 直接刪除 若是元素不存在 不作任何操做運算符 | Python 表達式 | 結果 | 描述 | 支持的數據類型 |
---|---|---|---|---|
+ | [1, 2] + [3, 4] | [1, 2, 3, 4] | 合併 | 字符串、列表、元組 |
* | ['Hi!'] * 4 | ['Hi!', 'Hi!', 'Hi!', 'Hi!'] | 複製 | 字符串、列表、元組 |
in | 3 in (1, 2, 3) | True | 元素是否存在 | 字符串、列表、元組、字典 |
not in | 4 not in (1, 2, 3) | True | 元素是否不存在 | 字符串、列表、元組、字典 |