elements in the python lists are code example
Example 1: python list and list
a = ['apple', 'banana', 'pear']
b = ['fridge', 'stove', 'banana']
a & b == ['banana'] #True
Example 2: list in python
myList = ["Test", 419]
myList.append(10)
myList.append("my code")
print(myList)