虽然调用input()
不带参数 ( x = input()
) 的函数可以正常工作,但带参数 ( ) 调用input()
会x = input("Type something")
导致以下错误:
AttributeError:“_DebuggerOutput”没有属性“错误”。
我究竟做错了什么?
额外细节:
- 我在 Visual Studio 2010 中使用 IronPython。
- 我使用的 Python 版本是 3.2.3(
print(sys.version))
输出3.2.3
)。