Create a Python set such that it shows the element from both lists in a pair using python programming
belongs to collection: Python Data Structure Exercises
All Answers
total answers (1)
belongs to collection: Python Data Structure Exercises
total answers (1)
Hint:
Use the
zip()
function. This function takes two or more iterables (like list, dict, string), aggregates them in a tuple, and returns it.Solution:
need an explanation for this answer? contact us directly to get an explanation for this answer