def my_cool_function(): return "I wrote this in the file: week5_import_a.py" print("Hey look... this gets printed when I get imported") print("The name of week5_import_a.py is: ", __name__) if(__name__ == "__main__"): print("week5_import_a.py is being run as the main file")