Posts by Dalvan Mendes • 1 point
1 post
-
0
votes1
answer547
viewsQ: Python to turn a number into an integer
import math x=9 raiz=math.sqrt(x) print raiz for i in range (raiz,9): #Problema aqui i=i**2 print i I need to create a for with the root of an operation (always whole. 2, 3,4,5...) but when I try to…