在Windows XP下运行Python脚本(模块)

时间:2012-11-03 09:18:02

标签: python configuration installation windows-xp

问题在于在Windows XP下运行Python脚本(模块)。

昨天我安装了适用于Windows的Python 3.3.0版本。问题是我可以使用命令行和IDLE来计算(它在输出中没有错误,但是如果我尝试简单的 打印“Hello。” < / strong>,在命令提示符下输出,在GUI IDLE中显示:

Syntax error: invalid syntax

路径变量设置为默认目录“C:\ Python33 \”,我可以再次使用它进行计算,但是从在线资源运行示例或者那些简单的东西对我来说是不可能的。

1 个答案:

答案 0 :(得分:0)

你需要在python 3.x

中使用print("hello")之类的东西

print已转换为python 3.x中的函数。

请阅读:“Print is a function

Python 3.1.2 (release31-maint, Dec  9 2011, 20:50:50) 
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print 3
  File "<stdin>", line 1
    print 3
          ^
SyntaxError: invalid syntax

>>> print(3)                  # works fine
3