python split()方法的參數(shù)有哪些

小億
211
2023-11-03 13:39:16

split()方法有以下參數(shù):

  1. separator(可選):指定分隔符,默認(rèn)為空格。
  2. maxsplit(可選):指定分割的次數(shù),默認(rèn)為-1,表示所有可能的分割。
    • 如果設(shè)置為正整數(shù),則最多只分割maxsplit次。
    • 如果設(shè)置為0,則不進(jìn)行分割。
  3. 返回值:分割后的字符串列表。

示例用法:

str = "Hello World"
result = str.split()  # 使用默認(rèn)的空格分隔符進(jìn)行分割
print(result)  # 輸出:['Hello', 'World']

str = "apple,orange,banana"
result = str.split(",")  # 使用逗號(hào)作為分隔符進(jìn)行分割
print(result)  # 輸出:['apple', 'orange', 'banana']

str = "apple,orange,banana"
result = str.split(",", 1)  # 使用逗號(hào)作為分隔符進(jìn)行分割,最多分割1次
print(result)  # 輸出:['apple', 'orange,banana']

0