06/06 📖 Python文字列関数-(3)

1573 ワード

Q)str 1文字列をstr listに変換するには、文字列関数のreplace関数とsplit関数を使用します。

str1 = ' one to two to three to four '

str1 = str1.replace('one', '1').replace('two', '2').replace('three', '3').replace('four', '4')
str1.split('to')