how to write and read from files in python code example
Example: python open and read file with
with open('pagehead.section.htm','r') as f:
output = f.read()
with open('pagehead.section.htm','r') as f:
output = f.read()