[at towarddatascience.com](https://towardsdatascience.com/building-android-apps-with-python-part-1-603820bebde8) Basically, use [Kivy](https://kivy.org/). There is a [udemy course](https://www.udemy.com/course/build-modern-desktop-gui-applications-with-python/) that started me off with Kivy. ## First Steps ```python from kivy.app import App from kivy.uix.label import Label class Main(App): def build(self): return Label(text='Hello World') Main().run() ``` I've never actually done any of this, and likely won't. Android development isn't on my near-future todo-list.