[python] 보안프로그래밍3 중간고사 정리 (5)
리스트 메소드 >> append(), insert()s = [1,2,3] s.append(5) # 리스트 맨 마지막에 정수 값 5추가 print s s.insert(3,4) # 3 인덱스 위치에 정수 4 추가 print s // 결과값[1, 2, 3, 5] [1, 2, 3, 4, 5] >> index(), count()s = [1,2,3,4,5] print s.index(3) # 값 3의 인덱스 반환 print s.count(2) # 값 2의 개수 반환 s = [1,2,2,2,2,2,2,2,2,3,4,5] print s.count(2) // 결과값2 1 8 >> reverse(), sort()s = [1,2,-10,-7,100] s.reverse() print s s.sort() print s // 결과..
2017. 4. 25.