6 lines
202 B
Python
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())
|