在Python 中以空格分割字串(重複)
您可以使用str.split() 方法在Python 中以空格分割字串不指定參數。此方法假設輸入字串應按所有空白字元進行拆分,包括空格、換行符和製表符。
考慮以下範例:
str = "many fancy word \nhello \thi" words = str.split() print(words)
輸出:
['many', 'fancy', 'word', 'hello', 'hi']
str.split() 方法已將輸入字串拆分為所有空白字符,從而生成單字列表。此方法類似於 Java 方法 str.split(String regex),其中 regex 參數指定定義分割點的正規表示式。透過省略 regex 參數,您將使用符合所有空白字元的預設正規表示式。
因此,要獲得與問題中提供的 Java 程式碼相同的結果,只需使用以下 Python 程式碼:
str = "many fancy word \nhello \thi" words = str.split() print(words)
以上是如何在 Python 中按空格分割字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!