0

我是一名新程序员,在我的手机(android棒棒糖)上使用qpython3学习python,总是需要使用“print”语句,但是控制台中的“print”有问题:

print "hello"
  File "<stdin>",line 1
    print " hello"
SyntaxError :invalid syntax

请告诉我一些关于 qpython3 中基本“打印”的信息,以便我摆脱这个麻烦。

4

1 回答 1

2

在 python 3 中,您必须用括号括住打印中的内容。

print("hello world")

与刚刚的旧方式相反

print "hello world"
于 2015-03-16T02:32:44.133 回答