Programming/Python (3) 썸네일형 리스트형 set.update() 여러 개의 값을 한꺼번에 추가(update)할 때는 다음과 같이 진행s1 = set([1,2,3])s1.update([4,5,6])s1{1,2,3,4,5,6} any/all(), enumerate() any() : 하나라도 True라면 True 반환all() : 모두 True면 True 반환Sample Codeif any(cur[1] enumerate() : index와 원소를 동시에 접근하는 방법Sample Code>>> for entry in enumerate(['A', 'B', 'C']):... print(entry)...(0, 'A')(1, 'B')(2, 'C') startswith, endswith 문자열로 이루어진 리스트, 딕셔너리에서 특정 문자(열)가 시작 혹은 끝 위치에 위치하는지 확인 startswith - 시작 위치 endswith - 종료 위치 활용법 # 날짜 리스트 dates = [ '2020-01', '2020-02', '2021-01', '2021-02', '2022-01', '2022-02' ] # 2020년만 출력하는 반복문 for date in dates: if date.startswith('2020'): print(date) else: continue '2020'으로 시작하는 문자가 확인되면 출력하는 샘플코드 입니다. 이전 1 다음