Python - Modules and Code Organization
What will be the output when running this Python file directly?
def main():
print('Running main')
if __name__ == '__main__':
main()