Always do yourself a favor and use this conventionthis convention:
if __name__ == '__main__'
convention from the beginning. This prevents confusing behaviour, such as when you want to use a function that's further down in your code. It also helps to structure your code better into functions.