Python - Modules and Code Organization
Consider this code in a file named
What will be printed when you run
module.py:print(f"Module name is {__name__}")
if __name__ == '__main__':
print('Executed directly')What will be printed when you run
python module.py?