一:元組 tuple
定義:元組是不可變的列表
如:t_1=(1,2,3,'ac')
t_2=('ab',)
引數為for迴圈的可迴圈物件
元組的資料是不可變的 但是它資料的資料(可變資料型別)是可變的
內建函式:.count和.index(index在該確定的元組範圍內中找不到會報錯,
而count會返回值沒有就是0 ,我會選擇count)
索引取值(『改』只能取出來查資料 改資料只能改內部的可變物件的資料)
切片print(id(t))n_t = t[
資料型別補充
資料型別之間的轉換 int bool str tuple dict set int bool str 他們三者時可以轉換的 bool 可以與所有的資料型別進行轉換 所有為空的資料型別轉換成bool 都為false 0 none false print bool bool false str list...
資料型別的補充
str 補充的方法練習一遍就行。s1 taibai capitalize 首字母大寫,其餘變小寫 print s1.capitalize swapcase 大小寫翻轉 print s1.swapcase title msg taibai say3hi print msg.title 每個單詞的首字母...
基礎資料型別補充
字串str s aa111aa print s.capitalize 首字母大寫,只有第乙個字母大寫 print s.title 每個單詞首字母大寫,單詞中間用特殊字元或中文隔開 print s.count a 統計 a 出現的次數 print s.swapcase 大小寫轉換 print s.fi...