1
0

initial file upload

This commit is contained in:
mlot
2025-05-09 10:12:44 -04:00
parent 61bf543133
commit 40e9918df0
22 changed files with 215 additions and 1 deletions

6
chap2/name_cases.py Normal file
View 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())