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

13
chap3/names.py Normal file
View File

@@ -0,0 +1,13 @@
names = ['mike', 'josh', 'joe', 'jim', 'jason']
print(names[0])
print(names[1])
print(names[2])
print(names[3])
print(names[4])
print(f"Hello, {names[0].title()}. What's up with you?")
print(f"Hello, {names[1].title()}. What's up with you?")
print(f"Hello, {names[2].title()}. What's up with you?")
print(f"Hello, {names[3].title()}. What's up with you?")
print(f"Hello, {names[4].title()}. What's up with you?")