Python 字典 Dictionary clear()方法
Python 字典 Dictionary clear()方法
Python 字典(Dictionary) clear() 函數(shù)用于刪除字典內(nèi)所有元素。
語法
clear()方法語法:
dict.clear()
參數(shù)
- NA。
返回值
該函數(shù)沒有任何返回值。
實(shí)例
以下實(shí)例展示了 clear()函數(shù)的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7}; print "Start Len : %d" % len(dict) dict.clear() print "End Len : %d" % len(dict)
以上實(shí)例輸出結(jié)果為:
Start Len : 2 End Len : 0
相關(guān)文章
- Python 環(huán)境搭建
- Python 條件語句
- Python XML 解析
- Python 哈希表
- Python3 教程
- Python3 環(huán)境搭建
- Python3 for while 循環(huán)語句
- Python3 模塊
- Python3 文件讀寫
- Python3 命名空間
- Python sqrt() 函數(shù)
- Python os.close() 方法
- Python os.makedirs() 方法
- Python os.readlink() 方法
- Python rfind()方法
- Python rjust()方法
- Python List count()方法
- Python Tuple 元組 cmp()方法
- Python Tuple 元組 len()方法
- Python Tuple 元組 min()方法