Repository Details
Shared by


HelloGitHub Rating
0 ratings
Free•MIT
Claim
Discuss
Collect
Share
2k
Stars
No
Chinese
Python
Language
No
Active
8
Contributors
12
Issues
No
Organization
1.6.3
Latest
94
Forks
MIT
License
More

用于制作简单 GUI 程序的 Python 库。换一种简单的方式写 GUI(图形用户界面)程序
```python
from guietta import _, Gui, Quit
gui = Gui(
[ "Enter numbers:", "__a__", "+", "__b__", ["Calculate"] ],
[ "Result: -->", "result", _, _, _ ],
[ _, _, _, _, Quit ]
)
with gui.Calculate:
gui.result = float(gui.a) + float(gui.b)
gui.run()
```
Comments
Rating:
No comments yet