什么叫打码?import random as rd 的意思是导入随机模块,并把引用名简化为rd,原来需要这样用:random.randomint(1,10) 变成 rd.randomint(1,10)当然也可以是其他合法的命名。