Python 字典 Dictionary values()方法
Python 字典 Dictionary values()方法
Python 字典(Dictionary) values() 函數(shù)以列表返回字典中的所有值。
語法
values()方法語法:
dict.values()
參數(shù)
- NA。
返回值
返回字典中的所有值。
實例
以下實例展示了 values()函數(shù)的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} print "Value : %s" % dict.values()
以上實例輸出結(jié)果為:
Value : [7, 'Zara']
相關(guān)文章
- Python pass 語句
- Python 元組
- Python3 環(huán)境搭建
- Python3 面向?qū)ο?/a>
- Python3 內(nèi)置函數(shù)
- Python log10() 函數(shù)
- Python min() 函數(shù)
- Python modf() 函數(shù)
- Python shuffle() 函數(shù)
- 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()方法