リスト内の一部の要素を置き換え

2023/01/20

ls = ['1','','2','','3']
ls = [x if x is not '' else 0 for x in ls]
print(ls)
#['1', 0, '2', 0, '3']


[python]リストからNoneを除外する簡単な書き方
http://dackdive.hateblo.jp/entry/2014/08/25/172414