2
if、else whileループを使用せずにA、B、またはCの変数を 'remove'で減算しようとしていますが、それは9行目の構文エラーを投げている。これの背後にある理由は何か?'SyntaxError:関数呼び出しに代入できません'
print "\t\t\t\t\t Welcome to the game of piles"
A=3
B=3
C=3
print "A: %d\t B: %d\t C: %d" %(A,B,C)
while A>0 and B>0 and C>0:
choose_pile = raw_input("\nChoose a pile: ")
remove = input("How many to remove from pile %s" %choose_pile)
int(choose_pile)=int(choose_pile)-remove