如何用python编写一个产生1~100的随机数程序您可以使用random包中的randint函数importrandomx=random.randint(1,100)随机数的范围为1~100,包括开...