Skip to content Skip to sidebar Skip to footer

I Want To Understand Which Line Of Code Outputs **none** In The Function

The last line of the output is none can someone explain why pls def just_lyrics(): print ('i am a bad coder') print (' i keep trying to learn everday') def double_lyr

Solution 1:

This line:

print(double_lyrics())

Prints None because the function returns nothing

Post a Comment for "I Want To Understand Which Line Of Code Outputs **none** In The Function"