from urllib.request import urlopen
page1 = urlopen("http://www.beans-r-us.biz/prices.html")
page2 = urlopen("http://www.beans-r-us.biz/prices-loyalty.html")
text1 = page1.read().decode("utf8")
text2 = page2.read().decode("utf8")
where = text2.find(">$")
start_of_price = where + 2
end_of_price = where + 6
price_loyal = text2[start_of_price:end_of_price]
price = text1[234:238]
password = 5501
p = input("Loyalty Customers Password? : ")
passkey = int(p)
if passkey == password:
while price_loyal > 4.74:
if price_loyal < 4.74:
print("Here is the loyal customers price :) :")
print(price_loyal)
else:
print("Price is too high to make a profit, come back later :) ")
else:
print("Sorry incorrect password :(, here is the normal price :")
print(price)
input("Thanks for using our humble service, come again :), press enter to close this window.")
El problema que tengo es que funciona hasta que obtengo la parte 4.74. Luego se detiene y se queja de un tipo imposible de ordenar. Estoy completamente confundido en cuanto a lo que eso significa.¿Qué significa el error Tipo irrelevante en Python?
¿De qué se queja? – dukevin
¿No es 'price_loyal' una cadena (incluso si contiene números que ha encontrado con' find') que está tratando de comparar con un valor numérico (4.75)? ¿Qué sucede si prueba 'float (price_royal)' – Levon
A diferencia de otros lenguajes de scripting populares, python está estrictamente tipado. Esto significa que si quieres convertir una cadena en un número, tienes que hacerlo explícitamente. –