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
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'
>>>