# string object has the method .lower()
greet = 'Hello Bob'
zap = greet.lower()
print(zap) # Output: hello bob
# Remember this doesn't change the original string
# It only gives us a copy
print(greet) # Output: Hello Bob
print('Hi there'.lower()) # Output: hi there