본문 바로가기
Programing Language/Python

[Python] 문자열 존재여부

by pcm9881 2023. 3. 8.

-  문자열 존재여부 ( if-in )

text = 'abc'

if 'a' in text:
	print('포함')
else:
	print('미포함')

 

 

 

-  영어 또는 한글로만 이루어져 있는지 확인 ( isalpha() )

text1 = "one2threefour"

print(text1.isalpha()) # False

text2 = "one이threefour"

print(text2.isalpha()) # True

text2 = "1234"

print(text2.isalpha()) # False

 

 

-  영어 또는 한글, 숫자 로만 이루어져 있는지 확인 ( isalnum() )

text1 = "one2threefour"

print(text1.isalpha()) # True

text2 = "one이threefour5"

print(text2.isalpha()) # True

text2 = "1234%"

print(text2.isalpha()) # False

 

 

-  문자열 쪼개기 ( split )

text = "a,b,c"

t = text.split(',')
print(t) # ["a","b","c"]

 

 

 

728x90

'Programing Language > Python' 카테고리의 다른 글

[Python] 문자열 관련  (0) 2023.03.15
[Python] 시작하기  (0) 2023.03.10
[Python] default value if none  (0) 2023.03.06
[Python] xlsxwriter 관련  (0) 2023.02.25
[Python] AttributeError: module 'datetime' has no attribute 'now'  (0) 2023.02.21

댓글