▶ 문자열 ▶ 문자열 변경 str = " hi,hello,python ! " replace_str = str.replace('hi','oh!') #replace(기존,새거) strip_str = str.strip() #앞뒤 공백 제거 split_str = str.split(',') #문자열에 ,가 있으면 ,를 기준으로 문자열 나눔 print(replace_str) print(strip_str) print(split_str) oh!,hello,python ! hi,hello,python ! [' hi', 'hello', 'python ! '] ▶ 문자열 대소문자 변환 str = "Hi,HeLLo,pYthoN !" a = str.upper() #모두 대문자로 b = str.lower() #모두 소문자로 c ..