1"""
2Kivy is a cross-platform python library for developing apps across many 
3devices, including:
4
51.  IOS
62. Android
73. Windows
84. Linux
95. MacOS
10
11Even better for developers - It's open source!
12"""1from kivy.app import App
2from kivy.uix.label import Label
3
4
5class MyApp(App):
6    def build(self):
7        return Label(text='Hello World')
8
9
10if __name__ == '__main__':
11    MyApp().run()
12    1from kivy.app import App
2from kivy.uix.label import Label
3
4
5class MyApp(App):
6    def build(self):
7        return Label(text='Hello World')
8
9
10if __name__ == '__main__':
11    MyApp().run()