每当我在代码中输入elif时,我在启动程序时都会显示错误

时间:2016-12-09 20:50:36

标签: python

每次在代码中输入elif时,我都会在启动程序时显示错误

# This is game creating practice
import random
secretNumber = random.randint(1, 20)
print('I am thinking of a number between 1 and 20.')

# Ask the player to guess 6 times
for guessesTaken in range(1, 7):
    print('Take a guess.')
    guess = int(input())

    if guess < secretNumber:
        print('Your guess is too low.')
        elif guess > secretNumber:
            print('Your guess is to high.')
        else:
            break  # This condition is the correct guess!

if guess == secretNumber:
    print('Good job! You guessed my number in ' + str(guessesTaken) + ' guesses!)
else:
    print('Nope. The number I was thinking of was ' + str(secretNumber))

1 个答案:

答案 0 :(得分:0)

在Python中,空白很重要。

您的elif应与if位于同一列。