cs50/compare_string.py

6 lines
71 B
Python

s = input("s? ")
t = s.capitalize()
print(f"s: {s}")
print(f"t: {t}")