Create a Python set such that it shows the element from both lists in a pair
801
Given Input:
first_list = [2, 3, 4, 5, 6, 7, 8]
second_list = [4, 9, 16, 25, 36, 49, 64]
Expected Output:
Result is {(6, 36), (8, 64), (4, 16), (5, 25), (3, 9), (7, 49), (2, 4)}
Result is {(6, 36), (8, 64), (4, 16), (5, 25), (3, 9), (7, 49), (2, 4)}
Use the zip()
function. This function takes two or more iterables (like list, dict, string), aggregates them in a tuple, and returns it.
Program:
first_list = [2, 3, 4, 5, 6, 7, 8] print("First List ", first_list) second_list = [4, 9, 16, 25, 36, 49, 64] print("Second List ", second_list) result = zip(first_list, second_list) result_set = set(result) print(result_set)
Output:
First List [2, 3, 4, 5, 6, 7, 8] Second List [4, 9, 16, 25, 36, 49, 64] {(6, 36), (8, 64), (4, 16), (5, 25), (3, 9), (7, 49), (2, 4)}
This Particular section is dedicated to Programs only. If you want learn more about Python. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS