DEBSOURCES
Skip Quicknav
sources / pycode-browser / 1%3A1.02%2Bgit20181006-3 / Code / Maths / max.py
1234567891011
#Example: max.py max = 0 while 1: # Infinite loop x = input('Enter a number ') if x > max: max = x if x == 0: print max break