initial file upload
This commit is contained in:
6
chap2/name_cases.py
Normal file
6
chap2/name_cases.py
Normal file
@@ -0,0 +1,6 @@
|
||||
# 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())
|
||||
Reference in New Issue
Block a user