Python 文字列をスラッシュで区切るサンプル
環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)
構文
文字列変数名 = '値’
文字列変数名.split('/’)
文字列をスラッシュで区切ってリストにしています。
使用例
# coding: utf-8 strA = '2022/11/21' reslist = strA.split('/') for str in reslist: print(str) print(reslist)
実行結果
2022
11
21
['2022′, ’11’, ’21’]