greet = 'Hello Bob'
up1 = greet.upper()
# up2 = upper(greet) - This doesn't work
# print(up2) - Remember this will give you a Syntax Error
print(up1) # Output: HELLO BOB
# Another thing, this will give us only a copy,
# Original string remains the same
print(greet) # Hello Bob