Skip to content

Commit

Permalink
Update 2-4 문자 자료형.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongYunLee authored Apr 2, 2022
1 parent bb82591 commit ade4a86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 2. 기본 자료형과 연산/2-4 문자 자료형.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ a[-1] # 결과: '마'

문장도 단어와 마찬가지 입니다. 아래와 같은 문장이 있을 때, `a[0]='코'`가 됩니다. 인덱스 번호는 띄어쓰기와 기호(이 문장에서는 !)를 모두 포함합니다.

![문자열-슬라이싱](/python/2-4/sliced.png)
![문자열-슬라이싱](/content/문자열-슬라이싱.png)

그렇다면 이 문자열의 길이는 어떻게 알 수 있을까요? 물론 하나씩 세어줄 수 있지만, 긴 문장인 경우에도 모두 세기 어려울 수 있습니다. 이때는 `len`함수를 사용하면 됩니다.
```python
Expand Down

0 comments on commit ade4a86

Please sign in to comment.