Pytho學習_獲取字典中的元素

案例:獲取字典中的元素 info={"name":"胖子","age":"18","sex":"女","mei":False} print(info) print("姓名爲%s"%info["name"]) print("年齡爲%s"%info["age"]) print("性別爲%s"%info["sex"]) print("美麗否",info.get("mei")) 運行結果:
相關文章
相關標籤/搜索