Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Import the GUI widgets that you'll be using, and create the 'app' for your program.
- from guizero import App, TextBox, PushButton, Text, info
- app = App()
- # Function definitions for your events go here.
- def btn_go_clicked():
- info("Greetings","Hello, " + txt_name.value + ", your favourite animal is " + txt1_name.value + ", and your favourite sport is " + txt2_name.value + ". Have a nice day.")
- # Your GUI widgets go here
- lbl_name = Text(app, text="Hello. What's your name?")
- txt_name = TextBox(app)
- lbl1_name = Text(app, text="What is your favourite animal?")
- txt1_name = TextBox(app)
- lbl2_name = Text(app, text="What is your favourite sport?")
- txt2_name = TextBox(app)
- btn_go = PushButton(app, command=btn_go_clicked, text="Done")
- # Show the GUI on the screen
- app.display()
Add Comment
Please, Sign In to add comment