修改
2. 末尾增加
3.指定索引插入
(插入資料後,後面資料自動向後排
)
# extend
方法可以把其他列表中的完整內容,追加到當前列表的末尾
temp_list= ["
孫悟空", "
豬二哥", "
沙師弟"]
name_list.extend(temp_list)
把temp_list
資料追加到
name_list
中4.
刪除#remove
方法可以從列表中刪除指定的資料
name_list.remove("wangwu")
#pop
方法預設可以把列表中最後乙個元素刪除
name_list.pop()
#pop
方法可以指定要刪除元素的索引
name_list.pop(3)
#clear
方法可以清空列表
name_list.clear()
列印name_list
中的資料:
就會出現以下這種情況:
排序
迭代遍歷
取值和取索引
print(info_tuple[0])
# 已經知道資料的內容,希望知道該資料在元組中的索引
print(info_tuple.index("zhangsan"))
#統計計數
print(info_tuple.count("zhangsan"))
#
統計元組中包含元素的個數
使用迭代遍歷元組
for
my_info
in info_tuple:
//只能是乙個元組,不能是乙個任意資料
# 使用格式字串拼接
my_info
這個變數不方便!
# 因為元組中通常儲存的資料型別是不同的!
# 字典是乙個無序的資料集合,使用
函式輸出字典時,通常
# 輸出的順序和定義的順序是不一致的!
Java高階資料型別
blob 寫入 fileinputstream fis new fileinputstream file pstmt.setbinarystream 1,fis,int file.length pstmt.close fis.close 讀取 blob blob rs.getblob photo i...
Redis高階資料型別
獲取指定key對應偏移量上的bit值 getbit key offset 設定指定key對應偏移量上的bit值,value只能是1或0 setbit key offset value 對指定key按位進行交 並 非 異或 and or not xor 操作,並將結果儲存到destkey中 bitop...
PYTHON資料型別 高階
str captalize 首字母大寫,其餘小寫 s1.capitalize swapcase 大小寫翻轉 s1.swapcase 每個單詞首字母大寫 s1 hello say3you s1.title you變成you 居中s1.center 30 s1.center 20,找索引 s1.find...