Python - Modules and Code Organization
You want to write a Python script that can be used both as a module and run directly. Which code structure correctly achieves this?
def process():
print('Processing')
# Which block below is correct?