0
I am learning the Python Kivy library. The code is not making mistakes, but the window opens and closes immediately. How can I make the window stay open?
import kivy
from kivy.app import App
from kivy.uix.label import Label
kivy.require('1.9.1')
class PrimeiroApp(App):
def build(self):
return Label(text='Hello World, Kivy!')
if __name__ == '__main__':
PrimeiroApp().run()