Guest User

Untitled

a guest
Jan 17th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. # --↓のコードを追加する--
  2. import os
  3. import sys
  4.  
  5. f = open(os.devnull, 'w')
  6. sys.stderr = f
  7. sys.stdout = f
  8. sys.stdin = f
  9. # ------------------------
  10.  
  11. from kivy.app import App
  12. from kivy.uix.label import Label
  13.  
  14.  
  15. class MyApp(App):
  16. def build(self):
  17. return Label(text="Hello world")
  18.  
  19.  
  20. if __name__ == "__main__":
  21. MyApp().run()
Add Comment
Please, Sign In to add comment