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 difference)

Revision as of 12:23, 31 July 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 />