class game_type(object):
def __init__(self):
select_game = raw_input("Do you want to start the game? ")
if select_game.lower() == "yes":
player1_title = raw_input("What is Player 1's title? ").lower().title()
class dice_roll(object,game_type):
current_turn = 1
current_player = [player1_title,player2_title]
def __init__(self):
while game_won == False and p1_playing == True and p2_playing == True:
if raw_input("Type 'Roll' to start your turn %s" %current_player[current_turn]).lower() == "roll":
我不断收到一条错误消息:NameError: name 'player1_title' is not defined
我知道标题是一个函数,所以我确实尝试使用 player1_name 和 player1_unam 但这些也返回了相同的错误:(
有人可以帮忙吗
非常感谢所有答案