Comment ouvrir le fichier HTML local dans Python
import codecs
file = codecs.open("sample.html", "r", "utf-8")
print(file.read())
Super Salamander
import codecs
file = codecs.open("sample.html", "r", "utf-8")
print(file.read())