언어/파이썬9 [python] pass와 continue pass 단순히 그 줄에 실행할 코드가 없음을 뜻함 -> 그 줄 다음에 있는 코드는 실행됨 for i in range(3): print("pass",i) pass print("end of pass",i) continue 현 loop에 있는 코드는 실행하지 않고 바로 다음 loop로 넘어감 -> continue를 만날 시 동일 loop안 continue 다음 줄에 있는 코드는 실행이 되지 않음 for j in range(3): print("continue",j) continue print("end of continue",j) 2021. 1. 18. [python]list내의 str 붙여서 출력하기 일반 출력시 s=['a','b','c','d','e'] print(s) 붙여서 출력하기 s=['a','b','c','d','e'] print(''.join(s)) 2021. 1. 16. [python]문자열 list 정렬 list내에 int형만 있을 때 list내를 건드리면서 정렬을 하는 sort 함수 s=input() s.sort() list내에 str형이 있을 때 list내를 건드리지 않으면서 새로운 list에 정렬한 내용을 넣는 sorted 함수 s=input() result=sorted(s) 거꾸로 정렬할 때는 reverse사용 s=input() s.sort(reverse=True) s=input() result=[] result=sorted(s,reverse=True) 2021. 1. 16. 이전 1 2 다음