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')
Reference
この問題について(06/06 📖 Python文字列関数-(3)), 我々は、より多くの情報をここで見つけました https://velog.io/@t1won/0606-파이썬-문자열-함수-3テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol