Advertisement
Alex8433

knop

Dec 23rd, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. from kivy.app import App
  2. from kivy.uix.button import Button
  3.  
  4. class MyApp(App):
  5. def build(self):
  6. return Button(text='Hello World')
  7.  
  8. MyApp().run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement