1. split() / string을 list로 변환하기 스플릿은 내가 원하는 문자를 기준으로 문자 열을 쪼갤 수 있다. # split은 string.split("구분자")로 구성되어 있습니다. string = "hello/python/world!!" string_list = string.split("/") # split() 안에 들어간 값을 기준으로 문자를 나눈다. print(string_list) # ['hello', 'python', 'world!!'] 2. join() / list를 string으로 변환하기 반대로 조인을 이용해 쪼개진 문자를 합칠 수 있다. # join은 "사이에 들어갈 문자".join(리스트) 로 구성되어 있습니다. string_list = ["hello", "python", ..