Código valores:
Ver original
class valores: def __init__(self, semilla): self.s = semilla def operar(self): Yo = self.s Xo = str(int(self.s)**2) if True==(int((len(Xo)))%2.0==0): print "Yo=",str(Yo),"/","Xo",str(Xo),"X1=",str(Xo) else: print "Yo=",str(Yo),"/","Xo",str(Xo),"X1=","0"+str(Xo)
Este ejecuta el programa:
Código Python:
Ver original
import sys sys.path.append('clases') import valores semi = valores.valores(raw_input("Ingrese semilla: ")) print semi.operar()
El error que me muestra es el siguiente:
Ingrese semilla: 1465
Traceback (most recent call last):
File "C:\Documents and Settings\Administrador\Escritorio\Nueva carpeta\principal.py", line 5, in <module>
print semi.operar()
File "clases\valores.py", line 7, in operar
if True==(int((len(x)))%2.0==0):
TypeError: object of type 'int' has no len()
>>>