python program to accept a string and check if the character in every even position is in uppercase or lowercase and convert them in lowercase python code example
Example: how do you change a string to only uppercase in python
original = Hello, World!
#both of these work
upper = original.upper()
upper = upper(original)