cs50/uppercase.py

3 lines
74 B
Python

before = input("Before: ")
after = before.upper()
print(f"After: {after}")