1
0
Files

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