Python-basic: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
(Created page with "== Overview == Python 프로그래밍 내용 정리 == Statement == === for === * 구구단 예제 <source lang=python> >>> for i in range(2,10): ... for j in range(1,...")
 
No edit summary
Line 16: Line 16:
<references />
<references />


[[category:linux]]
[[category:python]]

Revision as of 13:25, 28 August 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>

References

<references />