打印命令给出语法错误python

时间:2017-08-01 12:34:13

标签: python syntax-error

这是我的简单功能代码,因为我是初学者

def repeat(s, exclaim):
    result = s*3
    if exclaim:
        result = result + '!!!'
    return result
def main():
    print repeat('Yay', False)
    print repeat('Woo Hoo', True)

if __name__ == '__main__':
    main()

但是当我运行此代码时,它会在行上显示错误  print repeat('Yay', False) 语法错误:语法无效 请帮忙

1 个答案:

答案 0 :(得分:1)

试试这个:

    print(repeat('Yay', False))