python-crash-course/Chapter_02/2-4_nameCases.py
2025-01-20 16:39:02 -05:00

8 lines
195 B
Python

# Exercise 2-4 Name Cases
# Learning Objective: Use the lower, upper, and title methods on a string variable.
name = "mister cheeks"
print(name.lower())
print(name.upper())
print(name.title())