13 lines
414 B
Python
13 lines
414 B
Python
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?") |