1️⃣lower : 소문자로 만들기
2️⃣upper : 대문자로 만들기
3️⃣split(나눌 문자열) : 나눌 문자열로 쪼개서 배열로 만듬. 기본값은 " "
4️⃣(연결할 문자열).join(대상 배열) : 대상 배열을 연결한 문자열로 이어진 문자열로 만듬
5️⃣strip, lstrip, rstrip : 문자열 앞 or 뒤 의 공백 제거
⭐6️⃣count : 문자열에서 특정 문자열의 갯수를 셈
7️⃣endswith : 특정 문자열로 끝나면 True 반환
8️⃣isnumeric : 문자열을 대상으로 number로만 이루어져 있으면 True 반환
-> 문자열에 int() 씌워서 숫자 되면 True 반환
-> int 타입에는 사용 불가
text1 = "What a Wonderful World!"
print(text1.lower()) # what a wonderful world!
print(text1.upper()) # WHAT A WONDERFUL WORLD!
splitted = text1.split()
print(splitted) # ['What', 'a', 'Wonderful', 'World!']
print(" ".join(splitted)) # What a Wonderful World!
text2 = " kind "
print(text2.strip()) # kind
print(text2.lstrip()) # kind
print(text2.rstrip()) # kind
text3 = "how many 'a' in here?"
print(text3.count("a")) # 2
print(text3.endswith("?")) # True
text4 = "54501a23"
text5 = "545013"
print(text4.isnumeric()) # False
print(text5.isnumeric()) # True
📍추가
1️⃣string.isalpha()
문자열에 알파벳 문자만 있는 경우 참을 반환
2️⃣string.replace(old, new)
모든 old 항목이 new로 대체된 새 문자열을 반환
⭐3️⃣if substring in string
하위 문자열이 문자열의 일부인지 확인