Problema de decodificación de Python 3.6
import?urllib.request
html=urllib.request.urlopen("/nba").read()
decodedHtml=html.decode('utf-8') p> p>
###### finalización
import?requests
resp=urllib.get("/nba")
resp .encoding ='utf-8'
decodedHtml=resp.text
##Completo