Skip to content

Commit

Permalink
edit 2024_07_25 TIL
Browse files Browse the repository at this point in the history
  • Loading branch information
terri1102 authored Jul 25, 2024
1 parent 5afdf54 commit 1e1fde5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion StudyGroups/TIL/2024/JULY/2024_07_25.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ def solution(s):
## 배운 점
- string을 split()으로 나누면 공백 여러 개인 경우 구분 못함
- isalpha(): 알파벳인지(A-Za-z) 확인
- isnumeric(): 숫자인지 확인
- isdigit(): 숫자인지 확인.
- isnumeric(): 숫자인지 확인. Superscript(위 첨자), subscript, 분수, 로마자 등 더 넓은 범위의 숫자 포함. ex) Ⅳ,½, ²
- isalnum(): 알파벳인지 숫자인지 확인
- isspace(): 공백인지 확인

0 comments on commit 1e1fde5

Please sign in to comment.