「Python」リスト(String, intとboolean )の要素を出力するサンプル

2021年2月28日

書式
リスト名 = [文字列string]
使用例

lstA = ["A001", "B002", "C003"]
lstB = [21, 35, 67, 29, 63]
lstC = [True, False, False]

print(lstA)
print(lstB)
print(lstC)

実行結果
['A001’, 'B002’, 'C003’]
[21, 35, 67, 29, 63]
[True, False, False]

Python

Posted by arkgame