https://blog.csdn.net/seetheworld518/article/details/46756639
https://blog.csdn.net/together_cz/article/details/76222558

1. 使用索引

>> strA = 'abcdefg'
>> strA[::-1]
'gfedcba'

2. 使用 list 的 reverse 方法

>> l = [c for c in strA]
>> l.reverse()
>> ''.join(l)
'gfedcba'

3. 使用 python 原生函数:reversed

>> ''.join(c for c in reversed(strA))
'gfedcba'
posted on 2018-07-15 22:32  未雨愁眸  阅读(387)  评论(0编辑  收藏  举报