我的 python 程序有一个缩进错误

My python program has an indentation error

我试图编写一个基本程序,但是当我尝试 运行 它时,我得到了错误 IndentationError: expected an indented block,而且我不知道我没有缩进哪一部分。这是代码:

from os import system
from time import sleep

while True:
input = raw_input("How are you doing?")
if input == "good":
    print "That's great!"
    sleep(3)
elif input == "bad":
    print "How come?"
    sleep(3)
else:
    print "What?
    sleep(3)

使用最新版本的 python2 已完成。如果你能提供帮助那就太好了。

from os import system
from time import sleep

while True:
   input = raw_input("How are you doing?")
   if input == "good":
      print "That's great!"
      sleep(3)
   elif input == "bad":
      print "How come?"
      sleep(3)
   else:
      print "What?"
      sleep(3)

编辑:您需要缩进 while 循环。并在最后的打印语句中添加引号。