Python-basic

From 탱이의 잡동사니
Revision as of 13:25, 28 August 2015 by Pchero (talk | contribs)
Jump to navigation Jump to search

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 />