以交互方式输入复合语句

时间:2011-03-26 21:31:28

标签: python python-3.x

我在IDLE提示符下运行这个简单的语句时遇到了麻烦。

if True:
    print("True") # need to press ENTER twice?
else:
  print("False")  # need to press ENTER twice?

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

按返回时IDLE会自动缩进。按删除删除自动缩进。

if True:
    print("True") # press return, then backspace
else:
    print("False")