Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. from kivy.app import App
  2. from kivy.uix.button import Button
  3.  
  4. class TutorialApp(App):
  5. def build(self):
  6. return Button(text="Coucou Bande de Nouilles!")
  7.  
  8. TutorialApp().run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement