I'm using EasyGui in Python 2.7. I would like to do something along the lines of:
- In one window, Have 5 text entry boxes
- Underneath this in the same window, a multiple choice option where I can select one of three options
- Underneath this in the same window, a different multiple choice question with three different options.
If the values are stores as a list, I could use the answers as variables later in my script. i can't find anything about combinations online for EASYGUI, will I have to use Tkinter? is there another simple python GUI tool that can do this?
Thanks.