6. Solo cuando es inferior a 4,74¶

11
from urllib.request import urlopen
URL_PRECIOS_LOYALTY = "https://api.allorigins.win/raw?url=http://beans.itcarlow.ie/prices-loyalty.html"
pagina = urlopen(URL_PRECIOS_LOYALTY)
texto = pagina.read()
ubicacion = texto.find(">$")
inicio = ubicacion + 2
fin = inicio + 4
if texto[inicio:fin] < 4.74:
print(texto[inicio:fin])
Activity: 6.1 ActiveCode (ac_l33_6)
You have attempted 1 of 2 activities on this page