骰子发生器,PYTHON 3.3.4中的拣选数量

时间:2014-02-21 10:17:06

标签: python random numbers dice

只是想知道如何制作骰子程序:

游戏使用4,6和12面的骰子来确定各种结果。 设计,编码和测试一个程序,模拟用这些数量的边投掷骰子。 用户应该能够输入正在抛出的骰子,例如4,6或12。 该程序应输出所选择的骰子和分数, 例如'6面骰子抛出,得分4' 用户应该能够根据需要多次重复此过程。

THKS

import random
dice = int(raw_input("What sided dice woud you like to roll? 4, 6 or 12?"))
while dice !=0:
    print random.randint(1,dice)
    dice = int(raw_input("What sided dice woud you like to roll? 4, 6 or 12? press 0 to stop."))

1 个答案:

答案 0 :(得分:0)

您实际上是在Python 3解释器中运行Python 2代码:

声明

print i

已被函数

取代
print(i)

raw_input(...)

已被

取代
input(...)