meta data for this page
  •  

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
python:while [2014/11/09 12:19]
moonrepeat 새로 만듦
python:while [2021/03/10 21:42] (현재)
줄 1: 줄 1:
-====== ​While ====== +====== ​while ====== 
-===== +===== 예제 ===== 
 +  * 1 부터 5 까지 출력 
 +    * <​code>>>>​ i = 1 
 +>>>​ while i <= 5: 
 +...    print(i) 
 +...    i = i + 1
  
------ +
-{{tag:python}}+
 +
 +
 +
 +</​code>​ 
 + 
 +---- 
 +  * [[Python]] 
 +{{tag>Python}}