1.假設有20個學生,名字為westosx,學生分數在60-100之間,篩選出成績在90分以上的學生
import random
stuinfo = {}
for i in range(20):
name = 'westos' + str(i)
score = random.randint(60,100)
stuinfo[name] = score
print(stuinfo)
highscore = {}
for name,score in stuinfo.items():
if score > 90:
highscore[name] = score
print(highscore)
使用字典生成式
import random
stuinfo = {}
for i in range(20):
name = 'westos' + str(i)
score = random.randint(60,100)
stuinfo[name] = score
print(stuinfo)
print()
2. 將所有的key值變為小寫
例如:d = dict(a=1,b=2,c=2,b=9,a=10),將所有key變為小寫,並合併相同key的鍵值(a=11,b=11,c=2)
字典生成式
python 字典生成式
需求1 假設有20個學生,學生名為westosx,學生成績在60 100之間,篩選出成績在90分以上的學生 import random stuinfo 用來存放學生資訊 for i in range 20 將資訊存放到列表裡 name westos str i score random.randin...
python 字典生成式
python內建的一種極其強大的生成字典的表示式。返回結果必須是字典 需求1 假設有20個學生,學生的分數在60 100之間,篩選出成績在90分以上的學生 方法一 使用for迴圈生成字典 import random stu for i in range 20 name westos str i sc...
Python 字典生成式
題目一 假設有20個學生,名字為westosx,學生分數在60 100之間,篩選出成績在90分以上的學生 一般做法 import random stuinfo for i in range 20 name westos str i score random.randint 60,100 stuinf...