上篇字数超了,因为是笔记,内容会有点多。
补充:
1.对于List不需要去range ,直接in xxx(xxx为list) 就会一个个赋值遍历。
2.去除list里重复的元素。
思路: 把第一个list里的数字都放到新的list里,如果没有过就放,有过就不重复加进去。
numbers = [6,2,5,9,5,7,7,4,9]
uniques = []
for number in numbers:
if number not in uniques:
uniques.append(number)
print(uniques)
3.list用[],tuple用()。list可以改,tuple不能修改。
4.dict用于key - value。
customer = {
“name”: “John”,
“age”: 30,
“is_verified”: True
}
print(customer.get(“name”))
调用get方法取Key