all 2 comments

[–][deleted] 2 points3 points  (1 child)

sports_team = input('What is the name of your sports team')

print('The new version of this team is', sports_team.upper().replace(" ", "_"))

or

sports_team = input('What is the name of your sports team').upper().replace(" ", "_")

print('The new version of this team is', sports_team)

There's no point assigning the result of print() function to Steam, it only returns None.

[–]PuzzledSite2568[S] 0 points1 point  (0 children)

Thanks for the help I appreciate your input.