简体   繁体   中英

Why str(reversed(…)) doesn't give me the reversed string?

I'm trying to get used to iterators. Why if I type

b = list(reversed([1,2,3,4,5]))

It will give me a reversed list, but

c = str(reversed('abcde'))

won't give me a reversed string?

In Python, reversed actually returns a reverse iterator. So, list applied on the iterator will give you the list object.

In the first case, input was also a list, so the result of list applied on the reversed iterator seemed appropriate to you.

In the second case, str applied on the returned iterator object will actually give you the string representation of it.

Instead, you need to iterate the values in the iterator and join them all with str.join function, like this

>>> ''.join(reversed('abcde'))
edcba

another way by extend slice method. more details

>>> a = "abcde"
>>> a[::-1]
'edcba'
>>> 

by string to list --> list reverse --> join list

>>> a
'abcde'
>>> b = list(a)
>>> b
['a', 'b', 'c', 'd', 'e']
>>> b.reverse()
>>> b
['e', 'd', 'c', 'b', 'a']
>>> "".join(b)
'edcba'
>>> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM