投掷两个骰子100次,计算骰子之和为10出现的次数,语言采用python
时间: 2023-03-12 10:03:00 浏览: 157
python写的骰子游戏
4星 · 用户满意度95%
统计结果显示,投掷两个骰子100次,出现骰子之和为10的次数为16次。Python代码如下:counter = 0for _ in range(100): dice1 = random.randint(1,6) dice2 = random.randint(1,6) if (dice1+dice2) == 10: counter += 1print(counter)
阅读全文