使用random函数库编写一个程序,输入一个整数作为随机种子,随机产生0_100之间的整数并输出
import random n=eval(input()) random.seed(n) print("{}".format(random.randint(0,100)))