SyntaxFix
Write A Post
Hire A Developer
Questions
Because of double print function. I suggest you to use return instead of print inside the function definition.
return
print
def lyrics(): return "The very first line" print(lyrics())
OR
def lyrics(): print("The very first line") lyrics()