라벨이 line continuation인 게시물 표시

Line break and line continuation in Python

Back slash (\) could be used for line break and line continuation in Python! a = 12 + 13 + 14 + 15 is same as a = 12 + 13 \       + 14 + 15 Thanks, Have fun!