Python 字典 Dictionary keys()方法
Python 字典 Dictionary keys()方法
Python 字典(Dictionary) keys() 函數以列表返回一個字典所有的鍵。
語法
keys()方法語法:
dict.keys()
參數
- NA。
返回值
返回一個字典所有的鍵。
實例
以下實例展示了 keys()函數的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} print "Value : %s" % dict.keys()
以上實例輸出結果為:
Value : ['Age', 'Name']
相關文章
- Python Number 數字
- Python2 與 Python3?? 版本區別
- Python 算法理由
- Python3 環境搭建
- Python3 基礎語法
- Python3 解釋器
- Python3 數字(Number)
- Python3 錯誤和異常
- Python shuffle() 函數
- Python File tell() 方法
- Python os.close() 方法
- Python os.dup() 方法
- Python os.fchmod() 方法
- Python os.isatty() 方法
- Python os.open() 方法
- Python encode()方法
- Python isalnum()方法
- Python rfind()方法
- Python splitlines()方法
- Python List max()方法