0

How to create a button with Python

28th Jun 2020, 3:11 PM
Marouan
3 odpowiedzi
+ 2
Вот с использованием Kivy import kivy from kivy.app import App from kivy.uix.button import Button class MyApp(App): def build(self): return Button(text='кнопка') if __name__ == '__main__': MyApp().run()
28th Jun 2020, 3:18 PM
Артур Хромов
0
I program using my phone because I do not have a computer
28th Jun 2020, 3:24 PM
Marouan