Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
You need to include the given variables, not literally to hard code them.
How does this satisfy all 5 lines of the test?
I Can only get the first line to pass, and never the second
I am super lost on this -
I got the first test to pass
but how do I add on to pass the oth 4 lines ?
so far I have
def qutoable(name, quote):
return 'Grae said: "Practice makes perfect"'
This Passed
how do I add the rest to make it pass without failing the previous line?
'Grae said: "Practice makes perfect"' should equal 'Dan said: "Get back to work, Grae"'
how do I make that work?