console application gui for python

后端 未结 2 1206
挽巷
挽巷 2020-12-18 13:13

We have console application option in C#, but how do I can make a console GUI in python? I should note I want to compile and use my program in windows. Also I want to select

2条回答
  •  庸人自扰
    2020-12-18 13:41

    Take a look at Python's curses library:

    • http://docs.python.org/howto/curses.html
    • http://www.dev-explorer.com/articles/python-with-curses
    • http://docs.python.org/library/curses.html

    If you'd like a Python shell, then you might want to look at something like PyFlakes / PyShell or similar.

提交回复
热议问题