WILT-210217

최대 1 분 소요

오늘 한 일

1. 강의

  • 프로그래밍 기초 in python : 프로그래밍 핵심개념 in python 37/44
    • if, while을 사용한 간단한 알고리즘 연습
    • 두 변수의 값을 바꿀 때 파이썬에서 제공하는 새로운 문법 알게 됨 ```python previous = 0 current = 1 i = 1

while i <= 50: print(current) previous, current = current, current + previous // temp 변수 없이도 변경 i += 1 ```

댓글남기기