Odd and square numbers: Difference between revisions

Fix Python solution
(→‎{{header|BQN}}: Under-Undo version)
(Fix Python solution)
Line 314:
=={{header|Python}}==
<lang python>
iimportimport math
szamok=[]
limit = 1000
Line 321:
num = i*i
if (num < 1000 and num > 99):
szamok.append(num)
 
print(szamok)
1,463

edits