かべぎわブログ

ブログです

Pythonの空のリストを作る方法2つ

概要

Pythonで空のリストを作る方法を2つご紹介します。

[] を代入する

list_wawawa = []

list() をつかう

list_sasasa = list()

おわりに

2つあるよ

入門 Python 3

入門 Python 3