python ouvrir et lire le fichier avec
with open('pagehead.section.htm','r') as f:
output = f.read()
Good Goshawk
with open('pagehead.section.htm','r') as f:
output = f.read()
with open('Path/to/file', 'r') as content_file:
content = content_file.read()