20 lines
505 B
Python
20 lines
505 B
Python
#!/usr/bin/env python
|
|
#
|
|
|
|
|
|
people = [ # <1>
|
|
('Melinda', 'Gates', 'Gates Foundation'),
|
|
('Steve', 'Jobs', 'Apple'),
|
|
('Larry', 'Wall', 'Perl'),
|
|
('Paul', 'Allen', 'Microsoft'),
|
|
('Larry', 'Ellison', 'Oracle'),
|
|
('Bill', 'Gates', 'Microsoft'),
|
|
('Mark', 'Zuckerberg', 'Facebook'),
|
|
('Sergey', 'Brin', 'Google'),
|
|
('Larry', 'Page', 'Google'),
|
|
('Linus', 'Torvalds', 'Linux'),
|
|
]
|
|
|
|
for first_name, last_name, org in people: # <2>
|
|
print("{} {}".format(first_name, last_name))
|