I just wanted to understand why you have to use if __name__ == '__main__':
if we can run any python script even without using that statement.
For example, I can run this script without using it:
def hello():
print("hello")
return 1234
# And here is the function being used
print(hello())