목록문자열 (2)
IT is Smart
이번에는 문자열을 배열처럼 이용하는 법에 대해 알아보겠습니다. 파이썬 IDLE를 실행하고 코드를 작성해보겠습니다. >>> user = "Tuna McFish" >>> user[0] 'T' >>> user[5] 'M' >>> user[-1] 'h' >>> user[-3] 'i' >>> user[2:7] 'na Mc' >>> user[:7] 'Tuna Mc' >>> user[2:] 'na McFish' >>> user[:] 'Tuna McFish' >>> print('dsadasd') dsadasd >>> len('dfjhf22893hfsdfjkasdf') 21 >>> len(user) 11 파이썬에서는 문자열을 내부적으로 배열로 처리를 합니다. 그래서 각각의 문자를 배열의 값들을 호출하는 것과 동일하게 호..
이번에는 파이썬에서 문자를 어떻게 입력해야 하는지 알아보겠습니다. 앞에서와 마찬가지로 파이썬 IDLE를 실행해서 바로 코딩을 해보겠습니다.>>> Bucky Roberts SyntaxError: invalid syntax >>> "Bucky Roberts" 'Bucky Roberts' >>> 'Bucky Roberts is awesome!' 'Bucky Roberts is awesome!' >>> 'I don't think shes 18' SyntaxError: invalid syntax >>> "I don't think shes 18" "I don't think shes 18" >>> 'She said, "What part of the cow is the meatloaf from?" ' 'She said..