Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Can anyone tell me how to how to convert any python program to an application for android or windows?

0 votes
asked Mar 1, 2020 by Manish Paul (140 points)

2 Answers

0 votes
answered Mar 5, 2020 by mondo
you can use pyinstaller to convert the script into an executable application( .exe )
0 votes
answered Mar 6, 2020 by Tuhinadri Banerjee (140 points)
For temporary basis, if you have IDLE installed in your machine, you can do this :

1) Open your code in a text editor, preferably Notepad or Gedit

2) Save the file with an extension .pyc which is a pre-compiled format

3) Click on it, to run the program, without opening the IDE

4) It works for Tkinter and other libraries also, as long as they are installed in your local machine
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...