Data structures 1. Lists My_list = [1,2,3] 2. Sets # every element must be unique My_set = {1,2,4} 3. Tuples # can not be modified My_tuple = (1,2,3) 4. Dictionaries My_dictionary = {“apple” : “ a red fruit”, “Bear” : “ a scary animal”}
0
0
1
19
0