python으로 알고리즘 문제를 풀거나 멋사 Django 수업을 들을 때 python 기본 문법의 이해가 부족하다고 생각해서 정리한다. 문자열 "Hello World" 'Python is fun' -> 'Python\'s fun' = "Python's fun" """Life is too short""" '''Life is too short, you need python''' a= "Python" b= "is fun" a + b # "Python is fun" a * 10 # "PythonPythonPythonPythonPythonPythonPythonPythonPythonPython" # index접근 a= "Python" print(a[0]) # P print(a[-1]) # n print(a[0:4]..