isalnum()

YU NA Joe·2022년 4월 22일
0

return True if all the characters are alphanumeric, meaning alphabet letter (a-z) and numbers (0-9)
문자나, 숫자로 string이 이루어져 있으면 True를 반환한다.

txt = "Company 12" 
x = txt.isalnum()
# False 

0개의 댓글