我在'上出现了无效的语法错误:'在' DisplayBands'之后功能,但我发现语法没有错。我可能失明了。非常感谢帮助(请原谅我愚蠢,我对此非常陌生。)
{{1}}
答案 0 :(得分:3)
函数定义需要函数名末尾的括号。
def DisplayBands():
^^ These are required
在这种情况下,您正在定义一个带0参数的函数
答案 1 :(得分:0)
您必须在函数声明后放置()
:
def DisplayBands():
print("Guess the name of the band out of:")
print("One Dimension")
print("Take What?")
print("Austin Eabier")
print("Front Street Lads")
now = time.time()
return now