#模拟彩票随机中奖
import random
num = int(input("请输入您的号码:"))
res = random.choice(range(100))+1
print("本期中奖号码为:", res)
#判断是否中奖2
if res == num:
print("恭喜您中奖了!!!")
else:
print("您未中奖,再接再厉!")
2023-11-30 10:37:22
#模拟彩票随机中奖
import random
num = int(input("请输入您的号码:"))
res = random.choice(range(100))+1
print("本期中奖号码为:", res)
#判断是否中奖2
if res == num:
print("恭喜您中奖了!!!")
else:
print("您未中奖,再接再厉!")