Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 4, 2020 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/0ce464ab6722e592b892d9b6eab281c7 to your computer and use it in GitHub Desktop.
Save codecademydev/0ce464ab6722e592b892d9b6eab281c7 to your computer and use it in GitHub Desktop.
Codecademy export
names = ['Jenny', 'Alexus', 'Sam', 'Grace']
dogs_names = ['Elphonse', 'Dr. Doggy DDS', 'Carter', 'Ralph']
names_and_dogs_names = zip(names, dogs_names)
print(list(names_and_dogs_names))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment