176k views
4 votes
Write the simplest statement that prints the following: 3 2 1 Go! python

1 Answer

4 votes

def motivation():

return "3 2 1 Go!"

print (motivation())

User Cusmar
by
5.2k points