编写一个程序,创建一个种子为1000的随机对象,并使用nextInt(100)方法显示0到100之间的前50个随机整数。
import randomrandom.seed(1000)for i in range(50):print(random.randint(0,100))