(filename)
| 23 | |
| 24 | # Readfile Functions which open the file that is passed to the script |
| 25 | def readfile(filename): |
| 26 | with open(filename, "r") as f: # Ensure file is correctly closed under |
| 27 | read_file = f.read() # all circumstances |
| 28 | print(read_file) |
| 29 | print() |
| 30 | print("#" * 80) |
| 31 | print() |
| 32 | |
| 33 | |
| 34 | def main(): |