为了账号安全,请及时绑定邮箱和手机立即绑定

如何在python中找到掷骰子程序的最小值和最大值

如何在python中找到掷骰子程序的最小值和最大值

偶然的你 2021-09-28 15:26:16
import randomprint(' \t Welcome rolling dice game\n ')while True : input(' Press any key to roll') roll=random.randint(1,6) print(roll) stop= input( ' you want to roll. again ? \n if yes then enter y \n if not then enter n\n ') if stop=='y':   continue elif stop=='n':   breakprint(' Thanks for Playing:')
查看完整描述

1 回答

?
守候你守候我

TA贡献1802条经验 获得超10个赞

尝试:


min = 6

max = 0

while True :

   input(' Press any key to roll')

   roll=random.randint(1,6)

   print(roll)


   if roll>max:

      max = roll

   if roll<min:

      min = roll


查看完整回答
反对 回复 2021-09-28
  • 1 回答
  • 0 关注
  • 187 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信