Skip to content

Instantly share code, notes, and snippets.

@pralabhsaxena05
Created December 10, 2021 07:35
Show Gist options
  • Save pralabhsaxena05/a2d1b2e915d8073aeb9af233031eaa41 to your computer and use it in GitHub Desktop.
Save pralabhsaxena05/a2d1b2e915d8073aeb9af233031eaa41 to your computer and use it in GitHub Desktop.
def list_to_dictionary(keys, values):
return dict(zip(keys, values))
list1 = ["Name", "Age", "City"]
list2 = ['Roy', 26, "New York"]
print(list_to_dictionary(list1, list2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment