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を使用してみましたが、これらも同じエラーを返しました:(
誰か助けてくれませんか
すべての答えは大歓迎です