1
0
Files
pythonCrashCourse/chap2/name_cases.py
2025-05-09 10:12:44 -04:00

6 lines
202 B
Python

# This program takes the name assigned to a variable and prints it out in upper, lower, and title cases
first_name = "Barb"
print(first_name.upper())
print(first_name.lower())
print(first_name.title())