我刚刚开始学习python,似乎我遇到了一行代码错误
错误消息:
File "hello.py", line 2
print ‘hello world!’
^
SyntaxError: invalid syntax
完整代码
# coding: utf-8
print ‘hello world!’
我不确定在这一条简单的行中会出现什么问题
答案 0 :(得分:1)
使用单引号,具体为'
而不是’
。
答案 1 :(得分:0)
尝试:
# coding: utf-8
print 'hello world!'
Python接受字符串的单'
或双"
引号。在特殊的多行情况下,您可以使用三重引用'''
。
答案 2 :(得分:0)
Python 3在打印后需要括号:
print('hello world')