gpt4 book ai didi

python按指定次数拆分

转载 作者:太空宇宙 更新时间:2023-11-03 12:33:55 25 4
gpt4 key购买 nike

在下面的字符串中,我如何按照以下方式拆分字符串

str1="hi\thello\thow\tare\tyou"
str1.split("\t")
n=1
Output=["hi"]

n=2
output:["hi","hello"]

最佳答案

str1.split('\t', n)[:-1]

str.split有一个可选的第二个参数,即拆分的次数。我们用切片删除列表中的最后一项(剩余的)。

例如:

a = 'foo,bar,baz,hello,world'
print(a.split(',', 2))
# ['foo', 'bar', 'baz,hello,world'] #only splits string twice
print(a.split(',', 2)[:-1]) #removes last element (leftover)
# ['foo', 'bar']

关于python按指定次数拆分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14235638/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com