「Python」splitで文字列をスラッシュで区切るサンプル
環境
PyCharm 2021.3.3
Python 3.9.2
書式
変数名 = 'スラッシュが含まれる文字列’
リスト名 = 変数名.split('/’)
文字列をスラッシュで区切ってリストにしています。
使用例
strA = '2022/04/09' strB = '2022/4/9' resLst = strA.split('/') resLst2 = strB.split('/') print("文字列1") for ee in resLst: print(ee) print(resLst) print("\n") print("文字列2") for ee in resLst2: print(ee) print(resLst2)
実行結果
文字列1 2022 04 09 ['2022', '04', '09'] 文字列2 2022 4 9 ['2022', '4', '9']