I am trying to find the element of List_00 or List_01 that are both in a single list named as combined_list. How can I find that?
#consists intergers
list_00 = [1, 2, 33, 100, 69]
#consists strings
list_01 = ['Jack', "Sam", "Trump"]
#both list combined in a single list to perform other experimental operations
combined_list = [list_00 , list_01]
#desired output: any single item of any of the above list