python def __init__ == main code example
Example 1: pythin int main
if __name__ == "__main__":
your_function()
Example 2: python if name == main example
# It's as if the interpreter inserts this at the top
# of your module when run as the main program.
__name__ = "__main__"