SyntaxFix
Write A Post
Hire A Developer
Questions
It's not really the python way to initialize lists like this. Anyway, you can initialize a list like this:
>>> l = [None] * 4 >>> l [None, None, None, None]