Python 字典生成式

2021-09-25 01:36:49 字數 1824 閱讀 5771

題目一

假設有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()

執行結果:

題目二將所有的key值變成大寫

題目三將所有的key以小寫輸出,並將key值對應的value值並值。

例如:d = dict(a=1,b=2,c=2,b=9,a=10)

要求輸出

一般做法:

d = dict(a=1,b=2,c=2,b=9,a=10)

new_dict = {}

for k,v in d.items():

low_k = k.lower()

if low_k not in new_dict:

new_dict[low_k] = v

else:

new_dict[low_k] += v

print(new_dict)

字典生成式:

print( if i % 3 == 0}) #先判斷if的條件,再執行i**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 ...