3. 루프, 순회(이터레이션)
1) 코멘트, 다음 라인에 이어서 쓰기 12345#코멘트를 쓸 수 있다.alphabet='abcedfg'+\ 'hijklmnop'+\ 'qrstuv'+\ 'wxyz'cs 2) if, elif, else12345678first=Truesecond=Falseif first: print("FIRST!")elif second: print("SECOND!")else: print("nothing...")cs 3) while, else, break12345678counter=5while counter>0: sentence=input("String to swap-case [type q to quit]: ") if sentence==q: break print(sentence.swapcase())else: print("다..
2016.10.14