Python split() 在字符串“”处
是否可以在“”处 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将使您可以分割空间并在分割后收集所有内容。
拆分为列表后,您可以使用 .join(xsplit) 将列表重新连接为单个字符串
This will let you split on the space as well as gather everything after the split.
Once you have split into a list you can rejoin the list into a single string with .join(xsplit)