Post

@PythonPr Answer: B. False
In Python, the is operator checks for object identity. It evaluates whether two variables point to the exact same object in memory.
When you create two empty lists using [] as literals, Python typically creates two separate, distinct list
English

@PythonPr B
Lists are mutable objects. Each time you request [], you get a new list.
English
















