1. list[1:4]는 list[4]를 포함하지 않는다. 


2. list comprehension 문법을 다시 체크하자. 

[element_in_items for items in list if expression] 구조를 외우자. 


3. a = [student[1:4] for student in students] 작성 시, a는 [[]]형태가 됨을 기억하자. 


4. float형 데이터를 소수점 두자리 까지 만드는 방법을 기억하자. 

'%.2f' % number

+ Recent posts