tuna = "fish"
if tuna == "fish":
print ' this is fish'
执行代码时出现语法错误。 请更正我的代码。
答案 0 :(得分:1)
在python 3中,print
是一个函数 print('hello world')
而不是python 2.x print 'hello world'
中的语句,基本上你忘了括号:
tuna = "fish"
if tuna == "fish":
print('this is fish')
输出结果为:
这是鱼