. Advertisement .
..3..
. Advertisement .
..4..
For beginners, I would like to have knowledge about python, how can I find the create a list of a certain length python to understand it better?
Here is a suggestion for youCreating an empty list:
>>> l = [None] * 10
>>> l
[None, None, None, None, None, None, None, None, None, None]
To create a list of a certain length python use list(range(10)) in 3.X