Interface in python terminal?

0

Dear users of the community, I would like to know if in Windows using Python 3.x it is possible to create and / or execute a program from the terminal as it would usually be done in systems like Linux. I leave an image as an example. I also clarify that the image is not my responsibility and I stress that it is only as a reference to what I try to do in ** Windows

I also clarify that it is clearly an example of INTERFAZ because what I try to do is an educational program to learn foreign languages

    
asked by Franco M 16.03.2018 в 18:58
source

1 answer

0

You can effectively create applications / scripts from the Windows terminal with Python. To run a program from the Windows terminal you must enter: python your_program_name

Remember in the python installation to check the python box as a system variable so that you can recognize the python command in the terminal.

On the other hand, I would advise that if you are really going to create an application (and not a script) that you use a library like tkinter or pyqt to make a desktop application. There are more, but I would recommend the first one. If you do not know them look on the internet or youtube where you can find information.

    
answered by 16.03.2018 в 19:16