显示2个随机生成的整数的加法和总数

时间:2015-10-24 02:30:53

标签: python

使用random.randint函数生成1,10之间的2个骰子数

我试图像这样展示价值观    例如    6 + 7 = 13 但我能展示的只是两者的总和

我的代码是

dice1 = random.randint(1,10)
dice2 = random.randint(1,10)
print("Player's hand is:", dice1 dice2)

1 个答案:

答案 0 :(得分:1)

print("Player's hand is: {} + {} = {}".format(dice1, dice2, dice1 + dice2))