这是我的代码
def gogogo (name)
echo = "Hi there, " + name
print echo
gogogo ("Gabriel")
它说第一行有错误,但我找不到问题,有人能指出问题吗?谢谢!
答案 0 :(得分:1)
您缺少函数定义行末尾的:
。
def gogogo(name):
echo = "Hi there, " + name
print echo
gogogo("Gabriel")
将来,请发布您收到的错误,因为它确实有助于发现问题。