-
>>> s = 'abc' >>> reversed(s) <reversed object at 0x00000000187E7D30> >>> list(reversed(s)) ['c', 'b', 'a'] >>> >>> ''.join(reversed(s)) 'cba' >>> '1'.join(reversed(s)) 'c1b1a' >>>
string의 경우 "::-1"로 가능.
증가량을 -1로 하기에 역순으로 접근하는 효과를 가진다.>>> s 'abc' >>> s[::-1] 'cba'
'Python' 카테고리의 다른 글
Python - namedtuple (0) 2020.09.08 Python - Counter (0) 2020.09.08 Python - deque - temp (0) 2020.09.08 Python - Time Complexity (0) 2020.09.07 Python - generator expression (0) 2020.09.07 Python - 함수 인수 (0) 2020.09.06 Python - 사칙연산 관련 '//' '**' (0) 2020.09.06 Python - bisect 함수 (0) 2020.09.06