Jak otworzyć lokalny plik HTML w Python

import codecs
file = codecs.open("sample.html", "r", "utf-8")
print(file.read())
Super Salamander