s = "Hello, World!" # This removes all uppercase letters from a string # if you want to convert your characters to lowercase, use lower() s = ''.join(ch for ch in s if not ch.isupper()) print(s) # ello, orld