less than 1 minute read

파이썬에서 문자열을 거꾸로 만드는 방법입니다.

문자열을 하나씩, 반대로 잘라서 다시 입력시킨후 출력하는방법
s = 'Reverse this strings'
s = [::-1]
print s

실행화면 pic1


Reverse()를 이용하는 방법
s = 'Reverse this strings'
print ''.join(reversed(s))

실행화면 pic1


파이썬적인 코드
print 'Reverse this strings'[::-1]

실행화면 pic2

Comments