Aprenderás a proteger a tu PC de sobrecargas eléctricas
¿Cómo gana dinero TikTok?
¿Software LIBRE vs Software PRIVATIVO?
import requests import json def getBtc(): try: response = requests.get("https://www.bitstamp.net/api/v2/ticker/btcusd") response = response.json() return str("$"+"{:,.2f}".format(float(response["last"]))) except: return "Algo salio mal" print(getBtc())
Ingrese cualquier reporte o sugerencia.