Python splitメソッドに分割数を指定して文字列を分割するサンプル
環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)
構文
文字列.split('分割文字’,分割数)
splitメソッドの2つめの引数は分割数です
使用例
strA = 'te,st,da,ta,ee' listA = strA.split(',',2) print(listA)
実行結果
['te’, 'st’, 'da,ta,ee’]