DEBSOURCES
Skip Quicknav
sources / pycode-browser / 1%3A1.02%2Bgit20181006-3 / Code / Maths / big3.py
1234567891011
#Example: big3.py x = 1 while x < 100: print x if x > 10: print 'Enough of this' break x = x + 1 print 'Done'