PHP
·
发表于 6年以前
·
阅读量:8450
from random import randint
d = {x: randint(60,100) for x in range(1,21)}
d_after = {k:v for k,v in d.items() if v > 90}