1
0
Files
pythonCrashCourse/chap2/name_cases.py

6 lines
202 B
Python
Raw Normal View History

2025-05-09 10:12:44 -04:00
# 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())