累累累
今天人生新成就達成
被調查局大哥詢問嚇爆我這個善良好公民
但應該是無大礙
我就去上班了XDD
好的今天老師要講的內容感覺很多喔 Set&Dictionary
link: https://www.youtube.com/watch?v=L3-KuGYhw78&list=PL-g0fdC5RMboYEyt6QS2iLb_1m7QcgfHk&index=6&t=188s
#集合
s={1,2,3}
print(9 in s)
print(9 not in s)
s1={1,2,3,4}
s2={3,4,5,6,7}
#交集(取兩個重複數值)
s3=s1&s2
print(s3)
#連集(取兩個所有資料且不重複)
s4=s1|s2
print(s4)
s1={1,2,3,4}
s2={3,4,5,6,7}
#差集
s5=s1-s2
print(s5)
#反交集
s6=s1^s2
print(s6)
#字串拆解成集合
s=set("hello")
print(s)
#輸入key返回value
dic={"apple":"蘋果","bug":"蟲蟲"}
print(dic)
print(dic["apple"])
#判斷key是否存在
print("apple" in dic)
dic={"apple":"蘋果","bug":"蟲蟲"}
#刪除鍵值對(key-value pair): del key值
del dic["apple"]
print(dic)
# 利用列表資料產生字典
# dic={key:value for x in list}
dic={x:x* 2 for x in [3,4,5]}
print(dic)