Guest User

Untitled

a guest
Jul 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import zilla
  2.  
  3. zilla.system.init()
  4.  
  5. flags = [zilla.WINDOWED]
  6. opts = [
  7. [zilla.GREEN_SIZE, 7, zilla.SUGGEST],
  8. [zilla.RED_SIZE, 7, zilla.SUGGEST]
  9. ]
  10.  
  11. try:
  12. display = zilla.Display((640, 480), flags, opts)
  13. except zilla.Error:
  14. display = None
  15. print("Unable to set display")
  16.  
  17. display.title = "hey"
  18. display.position = 200, 200
  19.  
  20. display.destroy()
  21.  
  22. zilla.system.exit()
Add Comment
Please, Sign In to add comment