在Python中,可以使用split()方法來按照指定的分隔符對字符串進行分割。
split()
下面是一個簡單的例子:
string = "apple,banana,orange" # 按逗號分隔字符串 result = string.split(",") print(result)
輸出:
['apple', 'banana', 'orange']
在這個例子中,我們使用逗號作為分隔符將字符串string分割成了一個列表result。
string
result
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529