python-crash-course/Chapter_02/2-04_name_cases.py
2025-01-22 12:32:29 -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())