>>> [x.lower() for x in ["A", "B", "C"]] ['a', 'b', 'c'] >>> [x.upper() for x in ["a", "b", "c"]] ['A', 'B', 'C']