메서드체이닝 연속으로 메서드를 호출하는 것 메서드의 결과값에 메서드를 다시 호출함. 너무 길게 사용해서 가독성을 해치지않게 주의 (한 줄에 79자 안넘게 권고) sentence = ' Hello, World! ' result = sentence.strip().lower().replace('world', 'python') # 1번 스탭 : sentence.strip() == 'Hello, World!' # 2번 스탭 : 'Hello, World!'.lower() == 'hello, world!' # 3번 스탭 : 'hello, world!'.replace('world', 'python') print(result) # 'hello, python!' 백슬러쉬를 이용해서 개행 가능 sentence = ' Hel..