Python

Python 指定したサイズの空のリストを作成する

シンプルに作成できる。

サンプルコード

empty_list = [None] * 5
print(empty_list)  # [None, None, None, None, None]