Python 字典 Dictionary values()方法
Python 字典 Dictionary values()方法
Python 字典(Dictionary) values() 函數以列表返回字典中的所有值。
語法
values()方法語法:
dict.values()
參數
- NA。
返回值
返回字典中的所有值。
實例
以下實例展示了 values()函數的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} print "Value : %s" % dict.values()
以上實例輸出結果為:
Value : [7, 'Zara']
相關文章
- Python pass 語句
- Python 元組
- Python3 環境搭建
- Python3 面向對象
- Python3 內置函數
- Python log10() 函數
- Python min() 函數
- Python modf() 函數
- Python shuffle() 函數
- Python os.isatty() 方法
- Python os.lseek() 方法
- Python os.read() 方法
- Python os.renames() 方法
- Python os.unlink() 方法
- Python os.path() 模塊
- Python isalnum()方法
- Python istitle()方法
- Python List sort()方法
- Python time localtime()方法
- Python time time()方法