daisukemaki1003
@daisukemaki1003

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

kivy.Appについて

解決したいこと

kivyを使ってみたのですが、
**kwargsが何を受け取っているのかわかりません。
superで自分(self.title)を引き継いでいるのですか?

該当するソースコード

from kivy.app import App


class TestApp(App):
    def __init__(self, **kwargs):
        super(TestApp, self).__init__(**kwargs)
        self.title = 'greet'
        print(kwargs)


if __name__ == '__main__':
    TestApp().run()
0

1Answer

kivy自体の説明ではないのですが、こちらのサイトが参考になると思います。

0Like

Your answer might help someone💌