Answers for "how to create a list with a null value in python with a specific length"

12

python initialize list length n

Creating an empty list:

>>> l = [None] * 10
>>> l
[None, None, None, None, None, None, None, None, None, None]
Posted by: Guest on February-07-2020

Code answers related to "how to create a list with a null value in python with a specific length"

Python Answers by Framework

Browse Popular Code Answers by Language