这是我的简单功能代码,因为我是初学者
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)
语法错误:语法无效
请帮忙
答案 0 :(得分:1)
试试这个:
print(repeat('Yay', False))