Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from itertools import chain
- ids = [2, 3, 5, 7, 11]
- nombres = ['Mishkin', 'Fomma', 'Nesvanova', 'Rodión', 'Fiodor']
- for x in chain(ids, nombres):
- print(x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement