在APKPure安全快速地下载APK
APKPure 使用签名验证功能,确保为您提供无病毒的 Python Interpreter with Kivy APK 下载。
使用Kivy Python解释器。蟒蛇REPL。Python的IDE。Python的教程。
SourceCode : https://github.com/terrorgun/Python_Interpreter
It is Python interpreter for Android.
It is Python REPL.
It is Python IDE and contain some tutorial.
It offers a great learning experience for Python beginners.
It is written in python using the Kivy framework. (http://kivy.org)
Kivy is cross platform greate NUI framwork.
You can test kivy like this.
# import kivy modules
import kivy
from kivy.core.window import Window
from kivy.uix.button import Button
# get root
root = Window.get_parent_window()
# creat button
btn = Button(text="button test", pos=(200,500), size_hint=(None, None), size=(300,150))
# show button
root.add_widget(btn)