Python:究竟如何获取一个字符串,将其拆分、反转并再次将其连接在一起?
到底如何使用 python 获取一个字符串、分割它、反转它并再次将它连接在一起,而无需括号、逗号等?
How exactly can you take a string, split it, reverse it and join it back together again without the brackets, commas, etc. using python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我被要求在不使用任何内置函数的情况下这样做。所以我为这些任务编写了三个函数。这是代码 -
请记住,这是一个更简单的解决方案。这是可以优化的,所以尝试一下。谢谢你!
I was asked to do so without using any inbuilt function. So I wrote three functions for these tasks. Here is the code-
Please remember, This is one of a simpler solution. This can be optimized so try that. Thank you!
你是说这个吗?
You mean this?
你的意思是这样吗?
Do you mean like this?
不适合 100% 这个特定的问题,但如果你想从后面分割,你可以这样做:
此代码从后面的符号“/”处分割一次。
Not fitting 100% to this particular question but if you want to split from the back you can do it like this:
This code splits once at symbol '/' from behind.
或更简单:
这里的重要部分是 split 函数 和 连接函数。要反转列表,您可以使用
reverse()
(它会就地反转列表)或切片语法[::-1]
(它会返回一个新的反转列表)。or simpler:
The important parts here are the split function and the join function. To reverse the list you can use
reverse()
, which reverses the list in place or the slicing syntax[::-1]
which returns a new, reversed list.