Python 字典 Dictionary clear()方法
Python 字典 Dictionary clear()方法
Python 字典(Dictionary) clear() 函數用于刪除字典內所有元素。
語法
clear()方法語法:
dict.clear()
參數
- NA。
返回值
該函數沒有任何返回值。
實例
以下實例展示了 clear()函數的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7}; print "Start Len : %d" % len(dict) dict.clear() print "End Len : %d" % len(dict)
以上實例輸出結果為:
Start Len : 2 End Len : 0
相關文章
- Python 環境搭建
- Python 條件語句
- Python XML 解析
- Python 哈希表
- Python3 教程
- Python3 環境搭建
- Python3 for while 循環語句
- Python3 模塊
- Python3 文件讀寫
- Python3 命名空間
- Python sqrt() 函數
- 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()方法