Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from guizero import App, Text
- app = App (title ='This is my first GUI')
- firstmessage = Text(app, text="This is big text")
- secondmessage = Text(app, text="This is green")
- thirdmessage = Text(app,text = "cat is lovely " )
- firstmessage.text_size = 40
- firstmessage.bg = "red"
- secondmessage.bg = "green"
- thirdmessage.font = "Times New Roman"
- app.display()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement