我只是想知道,我们可以将Python脚本转换为Android应用程序。
例如:
#This is my python app
a = input("Enter your name: ")
print('\n Hi, ' + a)
字符串
这只是一个简单的python脚本,没有gui(不需要),它将运行在shell/shell模式下,就像Termux一样。
> Enter your name: Who must not be named
> Hi, Who must not be named
是否可以将上述脚本转换为apk文件,而不使用任何其他模块等.
2条答案
按热度按时间4ktjp1zp1#
这里是我的github仓库,用于将.py文件转换为.apk文件(Kivy库)。如果你想在Android上运行一个没有Kivy库的应用程序,你可以使用Vim代码编辑器在Termux(一个Android的Linux模拟器)中运行它。
https://github.com/dobrous155/py-to-apk-with-Google-Colab/tree/main
ep6jt1vc2#
一个简单的替代https://puravidaapps.com/skulpt.php,因为在MIT App inventor上工作比在任何其他平台上开发Android应用程序更容易:)