Jak zmieniać ciąg na górną część w Python

original = Hello, World!

#both of these work
upper = original.upper()
upper = upper(original)
DaWildOne