[Python 자료형] 문자열 (String) - 1 문자열 생성 방법문자열은 " 또는 '를 이용해서 만들 수 있다. " " 안에는 ' 가 들어갈 수 있고, ' ' 안에는 " 가 들어갈 수 있다. 아래 코드로 확인해 보자.1234567#-*- coding: utf-8 -*- str1 = "I'm yours"str2 = 'He said, "Python is fun!!"' print str1print str2cs 12I'm yoursHe said, "Python is fun!!"cs """ """ 또는 ''' '''을 이용해서 여러 줄의 문자열도 간단히 표현 가능하다. 123456#-*- coding: utf-8 -*-str = """Life is too short,You need python"""print..