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()方法