ProgrammingLanguage/Python
[python] 정말 간단한 문자열 뒤집기
JinungKim
2020. 3. 27. 19:54
파이썬처럼 편한 언어가 또 있을까
word = 'Hello World'
print(word[::-1])