Re: Problem with game

2007-03-24 Thread irstas
On Mar 24, 5:20 pm, [EMAIL PROTECTED] wrote: > > File "Python-episode12-Zahlenraten.py", line 15 > > print "Die eingegebene Zahl ist kleiner als die generierte Zahl." > > IndentationError: expected an indented block You should indent stuff inside if-statement deeper than the if itself. I.e.

Re: Problem with game

2007-03-24 Thread hollandlucas
> File "Python-episode12-Zahlenraten.py", line 15 > print "Die eingegebene Zahl ist kleiner als die generierte Zahl." IndentationError: expected an indented block -- http://mail.python.org/mailman/listinfo/python-list

Problem with game

2007-03-24 Thread hollandlucas
Hello, the following script (it's in German): import random print "Wie oft wollen Sie spielen?" anzahl_spiele = input() games = 0 while games < anzahl_spiele: games += 1 print "Raten sie die Zahl, die vom Computer generiert wird!" random_number = random.randint(1, 100)