I'm new to Python and one of the problems I have for homework has me stuck.
Here's the question? Implement function cheer() that takes as input a team name (as a string) and prints a cheer as shown:
cheer(‘Huskies’)
How do you spell winner?
I know, I know!
H U S K I E S !
And that's how you spell winner!
Go Huskies!
I've been able to get everything figured out except for the spaced out team name on the third line. I'll post what I have below. If anyone had any ideas how to fix it, I would greatly appreciate it?
def cheer(team):
print("How do you spell winner?"+"\nI know, I know!""\n"+team.upper()+"!"+"\nAnd that's how you spell winner!"+"\nGo "+ team+"!"+"\n")
Using the team name "Devils" as the input, this is what the above code gets me:
cheer("Devils")
How do you spell winner?
I know, I know!
DEVILS!
And that's how you spell winner!
Go Devils!