使用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)
答案 0 :(得分:1)
print("Player's hand is: {} + {} = {}".format(dice1, dice2, dice1 + dice2))