列表的刪除操做:函數
list.pop(索引)spa
del list[索引]code
list.remove(值)對象
字典的刪除操做:blog
dict.clear() 清空字典索引
dict.pop(鍵)ip
del dict(鍵)內存
zip()函數rem
zip() 函數用於將可迭代的對象做爲參數,將對象中對應的元素打包成一個個元組,而後返回由這些元組組成的列表。 若是各個迭代器的元素個數不一致,則返回列表長度與最短的對象相同,字符串
zip 方法在 Python 2 和 Python 3 中的不一樣:在 Python 3.x 中爲了減小內存,zip() 返回的是一個對象。如需展現列表,需手動 list() 轉換。
a = [1,2,3] b = [4,5,6] c = [4,5,6,7,8] zipped=zip(a,b) print(zipped) print(list(zipped)) zipped2=zip(a,c) print(list(zipped2)) <zip object at 0x0000013DD05DFB88> [(1, 4), (2, 5), (3, 6)] [(1, 4), (2, 5), (3, 6)]
bin()返回一個整數 int 或者長整數 long int 的二進制表示。chr()用一個範圍在 range(256)內的(就是0~255)整數做參數,返回一個對應的字符。ord()返回字符串對應的 ASCII 數值