본문 바로가기

Python 기초

16. 한 줄 for 문

students = [1, 2, 3, 4, 5]
print(students)
students = [i + 100 for i in students]
print(students)

 

 

'Python 기초' 카테고리의 다른 글

18. 표준 입출력  (0) 2022.07.16
17. 기본값, 가변인자  (0) 2022.07.15
15. 리스트, 튜플, 딕셔너리  (0) 2022.07.15
14. continue, break  (0) 2022.07.15
13. 자료구조의 변경  (0) 2022.07.15