8 lines
195 B
Python
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())
|
|
|