# File manipulation
from importlib.resources import contents

# with open('system_config.txt') as file_object:
#     contents = file_object.read()
#     print(contents)

#open file function hard code file name
def openFile():
    with open('system_config.txt') as file_object:
        contents = file_object.read()
        print(contents)

#open file function with argument
def openFileArg(file):
    with open(file) as file_object:
        contents = file_object.read()
        print(contents)

openFileArg('system_config.txt')


# with open('people.txt') as theContent:
#     contentsPeople = theContent.read()
#     print(contentsPeople)