Python-basic: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 11: | Line 11: | ||
... print(i*j, end=" ") | ... print(i*j, end=" ") | ||
... print('') | ... print('') | ||
</source> | |||
=== while === | |||
while 문은 지정된 조건이 참일 경우에만 문장을 수행한다. | |||
<pre> | |||
while <조건문>: | |||
<수행할 문장1> | |||
<수행할 문장2> | |||
</pre> | |||
Sample | |||
<source lang=python> | |||
num = 0 | |||
while num < 10: | |||
num = num +1 | |||
print("Check value. num[%d]" % num) | |||
if num == 10: | |||
print("Last number") | |||
</source> | </source> | ||
Revision as of 11:50, 19 October 2015
Overview
Python 프로그래밍 내용 정리
Statement
for
- 구구단 예제
<source lang=python> >>> for i in range(2,10): ... for j in range(1, 10): ... print(i*j, end=" ") ... print() </source>
while
while 문은 지정된 조건이 참일 경우에만 문장을 수행한다.
while <조건문>: <수행할 문장1> <수행할 문장2>
Sample <source lang=python> num = 0 while num < 10:
num = num +1 print("Check value. num[%d]" % num) if num == 10: print("Last number")
</source>
References
<references />