w3resource

Python: Check if a nested list is a subset of another nested list

Python List: Exercise - 92 with Solution

Write a Python program to check if a nested list is a subset of another nested list.

Visual Presentation:

Python List: Check if a nested list is a subset of another nested list.

Sample Solution:

Python Code:

# Define a function 'checkSubset' that checks if all elements of 'input_list2' are contained in 'input_list1'
def checkSubset(input_list1, input_list2):
    return all(map(input_list1.__contains__, input_list2))

# Create two lists 'list1' and 'list2'
list1 = [[1, 3], [5, 7], [9, 11], [13, 15, 17]]
list2 = [[1, 3], [13, 15, 17]]

# Print a message indicating the original lists
print("Original list:")
# Print the contents of 'list1'
print(list1)
# Print the contents of 'list2'
print(list2)

# Check if one of the lists is a subset of the other and print the result
print("\nIf one of the said list is a subset of another:")
print(checkSubset(list1, list2))

# Create two nested lists 'list1' and 'list2'
list1 = [[[1, 2], [2, 3]], [[3, 4], [5, 6]]]
list2 = [[[3, 4], [5, 6]]]

# Print a message indicating the original lists
print("Original list:")
# Print the contents of 'list1'
print(list1)
# Print the contents of 'list2'
print(list2)

# Check if one of the lists is a subset of the other and print the result
print("\nIf one of the said list is a subset of another:")
print(checkSubset(list1, list2))

# Create two nested lists 'list1' and 'list2' with different elements
list1 = [[[1, 2], [2, 3]], [[3, 4], [5, 7]]]
list2 = [[[3, 4], [5, 6]]]

# Print a message indicating the original lists
print("Original list:")
# Print the contents of 'list1'
print(list1)
# Print the contents of 'list2'
print(list2)

# Check if one of the lists is a subset of the other and print the result
print("\nIf one of the said list is a subset of another:")
print(checkSubset(list1, list2)) 

Sample Output:

Original list:
[[1, 3], [5, 7], [9, 11], [13, 15, 17]]
[[1, 3], [13, 15, 17]]

If the one of the said list is a subset of another.:
True
Original list:
[[[1, 2], [2, 3]], [[3, 4], [5, 6]]]
[[[3, 4], [5, 6]]]

If the one of the said list is a subset of another.:
True
Original list:
[[[1, 2], [2, 3]], [[3, 4], [5, 7]]]
[[[3, 4], [5, 6]]]

If the one of the said list is a subset of another.:
False

Flowchart:

Flowchart: Find the list with maximum and minimum length.

Python Code Editor:

Previous: Write a Python program to find the list with maximum and minimum length.
Next: Write a Python program to count the number of sublists contain a particular element.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/list/python-data-type-list-exercise-92.php