Concentric Circles by recursive

R=range(31)
for n in sorted(set((x*x+y*y)**.5for x in R for y in R))[1:301]:print"%.6f"%n

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page