👉 A Python list is a collection of elements of the same type that can be added, removed from, or modified. It's similar to an array in JavaScript but uses a list data structure instead. Each element is a Python object and can contain other objects as values. Here are some examples: ```python my_list = ['apple', 'banana', 3.14] print(my_list) # Output: ['apple', 'banana', 3.14] ``` In