목록while (2)
IT is Smart
1. 파이썬 소개, Introduction to Python2. 파이썬의 특징, Features of Python (1/2)2. 파이썬의 특징, Features of Python (2/2)3. 파이썬 설치하기, Python Setup3.1 파이썬 버전 선택하기, Select Python version3.2 OS Bit 버전 선택하기, Select OS Bit3.3 설치파일 형태 선택하기, Select Setup File3.4 설치하기, Setup (1/2)3.4 설치하기, Setup (2/2)4.1 파이썬 Interactive Shell 사용하기 (1/3)4.1 파이썬 Interactive Shell 사용하기 (2/3)4.1 파이썬 Interactive Shell 사용하기 (3/3)4.2 파이썬 File..
이번에는 숫자범위를 사용하는 for문과 조건을 사용한 반복문인 while문에 대해 알아보겠습니다. 파이썬 IDLE를 실행한 후 편집기를 열고 코딩을 해보겠습니다. #from 0 to 10 for x in range(10): print(x) print("") #from 5 to 12 for x in range(5, 12): print(x) print("") #from 10 to 40 increment value 5 for x in range(10, 40, 5): print(x) print("") #While loop buttcrack = 5 while(buttcrack < 10): print(buttcrack) buttcrack += 1 range()는 숫자범위를 처리하는 함수입니다.range(10)은 0..