Advertisement
jolgri

assignment1

Dec 9th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. from guizero import App, Text
  2. app = App(title="This is my first GUI")
  3.  
  4. message = Text(app, text="GUIs are cool.")
  5. message2 = Text(app, text="Have a wonderful week and successful course!")
  6. message3 = Text(app, text="It is a new experience for me to use Mu, what about you?")
  7. message.text_size = 40
  8. message2.bg = "yellow"
  9. message3.bg = "lightblue"
  10. app.display()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement