Advertisement
robjones90

Untitled

Jan 30th, 2023
2,568
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. people = ['Markus', 'Robert', 'Adam']
  2. ages = [25, 31, 6000]
  3.  
  4. result = zip(people, ages)
  5. print(list(result))
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement