.isalpha()

Grace Goh·2022년 9월 16일
0

Python

목록 보기
3/24
# .isalpha() 알파벳 여부

msg = "SunflowerlovesSun"
print(msg.isalpha())
# True

msg = "1st"
print(msg.isalpha())
# False

msg = "with space"
print(msg.isalpha())
# False

a.isupper() # 대문자 여부
a.islower() # 소문자 여부
profile
Español, Inglés, Coreano y Python

0개의 댓글