The error I’m getting is " Expected lyrics to equal "Row Row Row Your Boat. "
"
What is wrong with my code I can’t seem to move past step 5. Someone please help.
def repeat_stuff(stuff, num_repeats=10):
return stuff*num_repeats
lyrics = repeat_stuff("Row ", 3) + "Your boat. "
repeat_stuff("Row ", 3)