1 2 3 4 5
before = input("Before: ") print("After: ", end="") for c in before: print(c.upper(), end="") print()