Question
========
How to create an empty list in Python?
Answer
======
The first way is to write an open square bracket followed by a close square bracket. And assign this expression to a variable.
Another way to create an empty list is using the list() built-in function. Call list() function with no arguments and assign the result to a variable.
Reference
========
https://programguru.org/python/how-to...