파이썬 - 문자열 자료형
문자열이란 문자, 단어 등으로 구성된 문자들의 집합을 의미한다. print('spam eggs') spam eggs print('doesn\'t') doesn't print("doesn't") # doesn't print('"Yes," they said.') "Yes," they said. print("\"Yes,\" they said.") "Yes," they said. print('"Isn\'t," they said.') "Isn't," they said. print('C:\some\name') C:\some ame print(r'C:\some\name') C:\some\name print("""\ Usage: thingy [OPTIONS] -h Display this usage message -H ..
프로그래밍 언어/파이썬
2020. 8. 22. 22:17