from kivy.app import Appfrom kivy.uix.button import Buttonclass TestApp(App): def build(self): return Button(text="Hello,kivy")TestApp().run()输出 ...
確定! 回上一頁