py and make it executable. code example
Example 1: how to make .exe from.py
pip install pyinstaller
Example 2: python make file executable
if __name__ == "__main__":
your_function()
pip install pyinstaller
if __name__ == "__main__":
your_function()