when to write uppercase code in python code example
Example: python uppercase
my_string = "this is my string"
print(my_string.upper())
# output: "THIS IS MY STRING"
my_string = "this is my string"
print(my_string.upper())
# output: "THIS IS MY STRING"