Python создать пустой список списка n

n = 5
lst = [None] * n
print(lst)
# [None, None, None, None, None]
Tofufu