Código
import math a=raw_input("Ingresa a") b=raw_input("Ingresa b") c=raw_input("Ingresa c") z=pow(b,2) d=z-4*a*c if d>0: w=sqrt(d) x1=(-b+w)/(2*a) x2=(-b-w)/(2*a) print x1 print x2 elif d==0: x=-b/(2*a) print x else: print "No hay solucion en reales"
Pero me larga el siguiente error:
Código:
<module>
z=pow(b,2)
TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'
¿A qué se debe?