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