Python split() 在字符串“”处

发布于 2025-01-11 04:39:17 字数 194 浏览 0 评论 0原文

是否可以在“”处 split() 字符串?我已经尝试过

x=str(input("Enter string to split: ")) #Input: one "two three"
xsplit=str.split()
print(xsplit[1])

,但它返回“二”,但我希望它显示“二三”。 怎么做呢?

Is it possible to split() string at " "? I have tried

x=str(input("Enter string to split: ")) #Input: one "two three"
xsplit=str.split()
print(xsplit[1])

but it returns "two" but I want it to show "two three".
How to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩套路吗 2025-01-18 04:39:17

这将使您可以分割空间并在分割后收集所有内容。

x=str(input("Enter string to split: ")) #Input: one "two three"
xsplit = x.split(' ')[1:]
xjoin = ' '.join(xsplit)
print(xjoin)

拆分为列表后,您可以使用 .join(xsplit) 将列表重新连接为单个字符串

This will let you split on the space as well as gather everything after the split.

x=str(input("Enter string to split: ")) #Input: one "two three"
xsplit = x.split(' ')[1:]
xjoin = ' '.join(xsplit)
print(xjoin)

Once you have split into a list you can rejoin the list into a single string with .join(xsplit)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文