これは私が書いたコードです。私はPythonの初心者で、これは私の最初の練習の一部です。したがって、問題は、コードの最後の行で、dieFace1 と dieFace2 に対してこの「未定義の変数」エラーが発生していることです。
def rollDie():
die1 = [1,2,3,4,5,6]
die2 = [1,2,3,4,5,6]
dieFace1 = int(random.shuffle(die1))
dieFace2 = int(random.shuffle(die2))
dieFaceTotal = dieFace1+dieFace2
while (userIn > pot or userIn < 0):
userIn = (raw_input(" Invalid bet, please enter the right bet amount"))
print "You rolled a ", dieFace1, "and ", dieFace2