This shows you the differences between two versions of the page.
| — |
programiranje:python_challenge:nivo_0 [2009/11/23 09:05] (current) delboy created |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ===== Python Challenge - Nivo 0 ===== | ||
| + | U [[http://www.pythonchallenge.com/pc/def/0.html|nultom nivou]] na slici je monitor na kome je slika na kojoj pise 2^38. Python ima operator za stepenovanje, tako da je ovaj nivo trivijalan. | ||
| + | <code python> | ||
| + | #!/usr/bin/env python | ||
| + | rez = 2**38 | ||
| + | print rez | ||
| + | </code> | ||
| + | |||
| + | **Rešenje**: http://www.pythonchallenge.com/pc/def/274877906944.html | ||