6 lines
219 B
Python
6 lines
219 B
Python
people = ['Nick', 'Rick', 'Roger', 'Syd']
|
|
ages = [23, 24, 23, 21]
|
|
instruments = ['Drums', 'Keyboards', 'Bass', 'Guitar']
|
|
for person, age, instrument in zip(people, ages, instruments):
|
|
print(person, age, instrument)
|