Advertisement
Guest User

main.py

a guest
Dec 16th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. import kivy
  2.  
  3. from kivy.app import App
  4. from kivy.uix.button import Button
  5.  
  6.  
  7. class MyApp(App):
  8.  
  9.     def build(self):
  10.         return Button(text='Ankit singh')
  11.  
  12.  
  13. if __name__ == '__main__':
  14.     MyApp().run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement