[Python]初心者筆記4(dictionary字典資料操作)
python操作dictionary字典的方式,感覺跟c#很像,以下就自我演練一下囉:
#進行數據分析之前常要引用的函式庫
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
#宣告字典的方式, 用大括弧{}
mydict = {"apple":"蘋果","banana":"香蕉"}
mydict
#使用字典的資料的方式, 用中括弧
mydict["apple"]
#增加字典的資料的方式, 用中括弧(若是要overwrite的話,寫法相同)
mydict["orange"] = "橘子"
#以for loop迴圈循環字典裡的資料(以字典的key去做loop)
for key in mydict:
print("key:{}, value:{}".format(key, mydict[key]))
參考資料:
成為python數據分析達人的第一課(自學課程)
http://moocs.nccu.edu.tw/course/123/intro