how to make it not matter whether or not it's in caps or lowercase python code example
Example: how to change a string to small letter in python
my_str = "Hello World"
my_str.lower()
print(my_str)
my_str = "Hello World"
my_str.lower()
print(my_str)