Python学习之路----试手

刚装完Python3.4,试了手,把之前阅读学来的一点点关于Python的知识实践了一下。可是有谁知道,当我兴冲冲输入

>>> printf  'HELLO WORLD’

回车之后,发现一个以外的error:

SyntaxError: Missing parentheses in call to 'print'

经查阅得知:

The print statement has been replaced with a print() function, with keyword arguments to replace most of the special syntax of the old print statement (PEP 3105).

>>> print ("hello world ")

hello world 



你可能感兴趣的:(Python学习之路----试手)