gpt4 book ai didi

python - 将python中的字符串从左边开始分成两部分

转载 作者:太空宇宙 更新时间:2023-11-03 13:17:13 32 4
gpt4 key购买 nike

我有一个来自 input() 的字符串,我只想将其分成两部分,分隔符作为空格,即使空格可能出现两次以上。

例如,如果输入字符串是

'acquire Wooden Shield'

我想要的结果列表是

['acquire', 'Wooden Shield]

我认为这很容易做到,谢谢。

最佳答案

split可以采用第二个参数来定义您想要进行多少次拆分。如果你只想要两个元素,你可以只拆分一次。

>>> s = 'acquire Wooden Shield'
>>> s.split(' ', 1)
['acquire', 'Wooden Shield']

str.split([sep[, maxsplit]]) If maxsplit is given, at most maxsplit splits are done (thus, the list will have at most maxsplit+1 elements). If maxsplit is not specified or -1, then there is no limit on the number of splits (all possible splits are made).

关于python - 将python中的字符串从左边开始分成两部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25285685/

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