相当与数据结构
- tinydict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
-
- print("tinydict['Name']: ", tinydict['Name'])
- print("tinydict['Age']: ", tinydict['Age'])
- tinydict['Name']: Zara
- tinydict['Age']: 7
也可以
- tinydict1 = { 'abc': 456 }
- tinydict2 = { 'abc': 123, 98.6: 37 }
- tinydict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
-
- tinydict['Age'] = 8 # 更新
- tinydict['School'] = "RUNOOB" # 添加
-
- print("tinydict['Age']: ", tinydict['Age'])
- print("tinydict['School']: ", tinydict['School'])
- tinydict['Age']: 8
- tinydict['School']: RUNOOB
- #储存字典
- contacts = {"小明":"17980432",
- "小红":"16892374" }
-
- #查看字典中有没有,存在返回Ture,否则返回False
- print("小明" in contacts)
- print("小明明" in contacts)
- #True
- #False
-
-
- del contacts["小明"]
- del 字典名["字典元素"]
len(字典名)
1 | cmp(dict1, dict2) 比较两个字典元素。 |
2 | len(dict) 计算字典元素个数,即键的总数。 |
3 | str(dict) 输出字典可打印的字符串表示。 |
4 | type(variable) 返回输入的变量类型,如果变量是字典就返回字典类型。 |
dict.clear() 删除字典内所有元素 | |
2 | dict.copy() 返回一个字典的浅复制 |
3 | dict.fromkeys(seq[, val]) 创建一个新字典,以序列 seq 中元素做字典的键,val 为字典所有键对应的初始值 |
4 | dict.get(key, default=None) 返回指定键的值,如果值不在字典中返回default值 |
5 | dict.has_key(key) 如果键在字典dict里返回true,否则返回false。Python3 不支持。 |
6 | dict.items() 以列表返回可遍历的(键, 值) 元组数组 |
7 | dict.keys() 以列表返回一个字典所有的键 |
8 | dict.setdefault(key, default=None) 和get()类似, 但如果键不存在于字典中,将会添加键并将值设为default |
9 | dict.update(dict2) 把字典dict2的键/值对更新到dict里 |
10 | dict.values() 以列表返值回字典中的所有 |
11 | pop(key[,default]) 删除字典给定键 key 所对应的值,返回值为被删除的值。key值必须给出。 否则,返回default值。 |
12 | popitem() 返回并删除字典中的最后一对键和值。 |
- sum = 0
- for i in range(1,101): #只会循环到100,不会到101
- sum = i + sum
- print(sum)
-
- #5050
- for i in range(1,20,2): #第三个参数表示步长
- print(i)
- """
- 1
- 3
- 5
- 7
- 9
- 11
- 13
- 15
- 17
- 19
- """
- while 条件A:
- 行动B
- total = 0
- count = 0
- use = input ("请输入数字")
- while use != "q":
- num = float(use)
- total = total + num
- count+=1
- use = input("请输入数字")
- if count==0:
- result = 0
- else:
- result = total/count
- print(result)
- name = "Tony"
- print(f"My name is {name}")
-
- name = "Mike"
- print(f"My name is {name}")
-
-
- """
- 输出
- My name is Tony
- My name is Mike
- """
- def hanshu(x,y):
- return x + y
- a =int(input())
- b = int(input())
- print(hanshu(a,b))
-
- #10
函数内的定义是局部变量,
func()函数会将函数中的局部变量返回出来
需要安装第三方库,
需要import引入