这是关于python中的if语句

时间:2013-09-21 19:36:27

标签: python-3.x

tuna = "fish"
if tuna == "fish":
   print ' this is fish'

执行代码时出现语法错误。 请更正我的代码。

1 个答案:

答案 0 :(得分:1)

在python 3中,print是一个函数 print('hello world') 而不是python 2.x print 'hello world'中的语句,基本上你忘了括号:

tuna = "fish"
if tuna == "fish":
    print('this is fish')

输出结果为:

  

这是鱼