运用random,并选择一个合适的函数,在0到99之间随机抽取一个偶数
收起
import random num = random.randrange(0, 100, 2) print(num)
报告相同问题?