213,725 views
42 votes
42 votes
Write the simplest statement that prints the following: 3 2 1 Go! python

User Teun Kooijman
by
3.0k points

1 Answer

23 votes
23 votes

def motivation():

return "3 2 1 Go!"

print (motivation())

User Giovanni Silva
by
2.8k points