映射两个打印值并根据结果打印字符串

时间:2018-10-26 11:10:23

标签: python variables printing

我正在为骰子游戏创建一个程序,我需要制作一行来执行比较两个先前打印的值的动作,然后根据该值打印一个字符串,到目前为止,我有以下代码: / p>

gloabl userEntry
print("GAME TIME")
dice_1 = random.randint(1,7)
dice_2 = random.randint(1,7)
if dice_1 == dice_2:
    dice_3 = random.randint(1,7)
    print(userEntry , "score for round1 is", dice_1 + dice_2 + dice_3)
else:
    print(userEntry_2 , "score for round1 is", dice_1 + dice_2)

playagin = input("do you want to play again?, press Y or N")
if play again == "Y":
    round2()
else:

在else区域下面是我想要我前面解释的代码所在的地方,上面有一段与此代码相同的代码,上面带有“ userEntry_2”,我需要这段代码来比较哪一行它印有“ userEntry”和“ userEntry_2”部分,然后根据更大的值显示谁获胜。非常感谢您的帮助。

0 个答案:

没有答案