我不明白调试的解释

时间:2018-10-19 11:09:40

标签: python

我制作了一个小程序来学习基础,但我不明白为什么它不起作用,您能通过解释我的错误来帮助我吗? 欢迎大家回答

import random
def gessing_game():
 t = 0
 r = random.randint(0,100)
 print(r)
 y = int(input("Please choose your number"))
 while  y != r:
  t = t + 1
  print("You have made",t,"attempts")
    if y > r:
     print("Too big!")
     y = int(input(print("Please try again")))
    if y < r:
     print("Too small!")
     y = int(input(print("Please try again")))
    if y == r:
     print("Well done you found it")
gessing_game()

这是他们如何定义我的错误

File "U:\Documents\Exo sur Thonny\Guessing_game.py", line 10
    if y > r:
   ^
IndentationError: unexpected indent

1 个答案:

答案 0 :(得分:0)

Python语法基于缩进。我也处于python编程的基本级别。它只是告诉您您不需要在“ if”后面添加任何缩进。当您添加缩进,您只需打开一个块即可。