免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1378 | 回复: 0
打印 上一主题 下一主题

转载: Reverse string in Python [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-04-01 22:57 |只看该作者 |倒序浏览

http://codeftw.blogspot.com/2007/04/reverse-string-in-python.html
While reading "
Some Call it Concatenation
" (which is funny, btw), some commenters are getting crazy and started to write in reverse. You know, in esrever. It's easy to write it, just use your left arrow key, but reading it is a pain.
So
after reading one of them and met another few, I thought, "Let's
reverse it using a program. Python will be great!". Besides, any decent
programmer is expected to know this according to the
expert
guys.
I'm new to Python, so forgive my lameness.
This is my first try:
C:\>python
Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import string
>>> string.reverse("?etisoppo eht siht sI. 'tac' fo draeh ev'I ?'cat' s'tahW")
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'module' object has no attribute 'reverse'
>>> string.rev("?etisoppo eht siht sI. 'tac' fo draeh ev'I ?'cat' s'tahW")
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'module' object has no attribute 'rev'
Oops, no reverse function there.
>>> import string
>>> def reverse(s):
...   res = ""
...   for x in s:
...     res = x + res
...
>>> def reverse(s)
File "", line 1
def reverse(s)
      ^
SyntaxError: invalid syntax
>>> def reverse(s):
...   res = ""
...   for x in s:
...     res = x + res
...   return res
...
>>> print reverse("?etisoppo eht siht sI. 'tac' fo draeh ev'I ?'cat' s'tahW")
What's 'tac'? I've heard of 'cat' .Is this the opposite?
>>> print reverse("(: .em rof gnipyt-esrever eht od ot 'cat' gnisu ot gnitroser
m'I .ylkciuq sa stsop hcus epyt t'nac I taht si FTW rehto ehT")
The other WTF is that I can't type such posts as quickly. I'm resorting to using
'tac' to do the reverse-typing for me. :(
Wow, I made it. String reverse in few minutes.
But that hack job is surely not scalable. So just as an exercise, I decided to improve the it.
At first, I want to do a half loop of the characters and swap the character in mirror image.
But
Python string is immutable, I didn't know how to create an empty list
with predetermined length (it's supposed to be done like this: s = [0]
* 10).
Then I stumbled upon an article about
string concatenation in Python
. It says that using list comprehension is the fastest. Interesting. Let's apply the method there. I came up with these:
    ''.join([s[len(s) - 1 - i] for i in range(len(s))])''.join([s for i in range(len(s) - 1, -1, -1)])
And finally, after reading about
Python's built in function
, I came up with this.
  • ''.join([x for x in reversed(s)])While writing about this, I found
    someone suggested string reverse method in Python
    . I found this gem there:
    • s[::-1]
    Wow, that's cool and I feel very newbie. But at least my method is supposed to be faster (maybe) and still in one line. :)
    To
    conclude, Python seems to have good language features. Imagine how
    string reverse is implemented in Java. One line? I don't think so.
                   
                   
                   

    本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/24274/showart_514360.html
  • 您需要登录后才可以回帖 登录 | 注册

    本版积分规则 发表回复

      

    北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
    未成年举报专区
    中国互联网协会会员  联系我们:huangweiwei@itpub.net
    感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

    清除 Cookies - ChinaUnix - Archiver - WAP - TOP