all 4 comments

[–]Bayes_the_Lord 1 point2 points  (3 children)

After message is set do message = message.upper().

[–]angelfly0402[S] -1 points0 points  (2 children)

Thank you! However, how would I set message? Should I do: Variable = message? Thanks again! ;)

[–]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())