-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.py
More file actions
11 lines (9 loc) · 422 Bytes
/
Copy pathpython.py
File metadata and controls
11 lines (9 loc) · 422 Bytes
1
2
3
4
5
6
7
8
9
10
11
transportation = ['Car', 'Bicycle', 'Airplane', 'Ferry']
message = f"I would rather use the {transportation[0].title()} to move."
print(message)
message = f"I would rather use the {transportation[1].title()} to move."
print(message)
message = f"I would rather use the {transportation[2].title()} to move."
print(message)
message = f"I would rather use the {transportation[3].title()} to move."
print(message)