字串
#示例
a='hello world!'
b='milk'
列表#示例
list1=
['i'
,'am'
,'the'
,'best'
]list2=[1
,2,3
,4,5
]list3=
['a'
,'b'
,'c'
,'d'
]list4=[20
,]
元組#示例
tup1=
('i'
,'am'
,'the'
,'best'
)tup2=(1
,2,3
,4,5
)tup3=
"a",
"b",
"c",
"d"#不需要括號也行
tup4=()
#空元組
tup5=(5
,)#只含有乙個元素時需要在後面加逗號,否則括號會被當成運算子使用
字典
字典的每個鍵值key=>value
對用冒號:
分割,每個對之間用逗號,
分割,整個字典包括在{}
內
#示例
d=
#訪問字典
dict
=printf(
"dict['name']:"
,dict
['name'
])
dict
=dict
['class']=
'b'#更新class
dict
['color']=
'pink'
#新增資訊
print
("dict['class']:"
,dict
['class'])
print
("dict['color']:"
,dict
['color'])
deldict
['name'
]#刪除鍵'name'
dict
.clear(
)#清空字典
deldict
#刪除字典
集合#示例
basket=
#basket是集合名
#若集合中有重複的元素,在輸出時會自動將其去掉
print
('orange'
in basket)
a=
set(
'absde')b=
set(
'adfffff'
)print
(a-b)
#輸出集合a中包含而集合b中不包含的元素
print
(a|b)
#輸出a或b中包含的所有元素
print
(a&b)
#輸出a和b中都包含的元素
print
(a^b)
#輸出不同時包含於a和b的元素
python 字串 列表 元組 字典 集合
1.字串 1.1 使用單引雙引號和三引號 可寫多行 括起來,使用反斜槓 轉義特殊字元 1.2 python3原始碼檔案預設以utf 8編碼,所有字串都是unicode字串 1.3 支援字串拼接 擷取等多種運算 a hello b python print a b 輸出結果 a b a b 輸出結果 ...
序列 字串,列表,元組,字典
字串,str 用 包裹 str gu,yao,hu 列表,list 用包裹 spr str.split print spr gu yao hu 切片操作 spr 0 gu str.split 2 hu print spr 0 1 gu print spr 3 gu yao hu print spr ...
字串 列表 元組 字典04
python的元組與列表類似,不同之處在於元組的元素不能修改。元組使用小括號,列表使用方括號。atuple et 77,99.9 atuple et 77,99.9 1 訪問元組 2 修改元組 說明 python中不允許修改元組的資料,包括不能刪除其中的元素。3 count,index index和...