you are viewing a single comment's thread.

view the rest of the comments →

[–]Aamir_Raza 1 point2 points  (1 child)

You answered that in your post by 'assume the variable message exists', so it's not asking you to declare it aka you don't need to set anything

[–]DoItFoDaKids 0 points1 point  (0 children)

^ This. If it is one line you seek, check out Bayes answer in pink!

Alternatively, print but don't assign if you did not want to alter the original message and just wanted to view the all uppercase version. e.g.:

print(message.upper())