Python环境安装失败?

Python环境安装失败?

python.org下载的2.52版
IDLE 1.2.2  
>>> print aaa

Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    print aaa
NameError: name 'aaa' is not defined

呵呵 输出字符串格式错误
print 'aaaa'
或者
print "aaa"
或者
print'aaa'
谢谢
见笑了,果然是少了引号.
今天刚下载的那个pdf版本的教程显示不了引号....


QUOTE:
原帖由 realmon 于 2008-7-13 18:17 发表
python.org下载的2.52版
IDLE 1.2.2  
>>> print aaa

Traceback (most recent call last):
  File "", line 1, in
    print aaa
NameError: name 'aaa' is not defined


和我的一样
这是因为有些资料(可能是比较老了吧)是像你上面的那样说的
实际上现在是2楼说的那样