2021
12-11
12-11
python字典进行运算原理及实例分享
说明1、字典运算中的键必须是不可变类型,如整数(int)、浮点数(float)、字符串(str)、元组(tuple)等。2、列表(list)和集合(set)不能作为字典中的键,当然字典本身也不能作为字典中的键,因为字典也是可变类型,但字典可以作为字典中的值。实例student1={'id':1010,'name':'小明','sex':'True','birthday':'2000-1-1'}#遍历字典中的键forkeyinstudent1:"""print(key,student1[key])#遍历...
继续阅读 >