반응형
python while 문
1.소스
count = 1 while count <= 10 : count = count + 1 print "count = %d " % count
결과
hacker@ubuntu:~/python$ python while1.py count = 2 count = 3 count = 4 count = 5 count = 6 count = 7 count = 8 count = 9 count = 10 count = 11
반응형
'Python' 카테고리의 다른 글
random (0) | 2016.07.21 |
---|---|
python for (0) | 2016.07.21 |
if 문 (0) | 2016.07.21 |
사용자 입력 받기 raw_input (0) | 2016.07.21 |
python hello world 찍기 (0) | 2016.07.21 |