Python 是一種流行的程式語言,它的設計哲學強調可讀性,並具有清晰的語法結構。Python 中有許多資料型態,其中一種是字典(Dict),它可以用來儲存鍵值對,例如:
my_dict = { "name": "John", "age": 30, "city": "New York" }
上面的程式碼建立了一個名為 my_dict 的字典,裡面有三個鍵值對,分別是 name、age 和 city。
在 Python 中,可以使用 my_dict[key] 的語法來取出字典中的值,例如:
name = my_dict["name"] age = my_dict["age"] city = my_dict["city"] print(name) # John print(age) # 30 print(city) # New York
上面的程式碼會將 my_dict 中的值取出,並且印出來。
另外,也可以使用 get() 方法來取出字典中的值,例如:
name = my_dict.get("name") age = my_dict.get("age") city = my_dict.get("city") print(name) # John print(age) # 30 print(city) # New York
上面的程式碼也會將 my_dict 中的值取出,並且印出來。
總結來說,Python 中的字典可以使用 my_dict[key] 或是 get() 方法來取出值,這兩種方法都可以輕鬆取得字典中的值。