问题描述
可以在Python中开发Android和iOS移动应用程序吗?我是移动应用程序的新手,并希望用Python开发移动应用程序。
Is possible to develop Android and iOS mobile applications in Python? I am a newcomer in mobile applications and want to develop mobile applications in Python.
推荐答案
是的,你可以使用
这是一个漂亮的跨平台python框架,适用于Android,Win7,Linux,Mac。 iOS是可能的,但非常微不足道,因为Apple不允许编写脚本。
This is a nice cross platform python framework which works for Android, Win7, Linux, Mac. iOS is possibile but very trivial as Apple doesn't allow scripting.
而对于Android,谷歌提供的东西叫做(Android Scripting Environment),它允许在Android上运行脚本语言(包括Python)。更多详细信息
And for Android Google provides something called ASE (Android Scripting Environment) which allows scripting languages (Python included) to run on Android. More details here
对于iOS,Python开发将在您的应用程序中嵌入Python解释器并随之分发您的Python脚本(以便与Apple规则很好地配合)。在这种情况下,您的Python应用程序将是一个Python解释器,它与您的脚本打包并自动运行。正如我所说 - 它不是很好b $ b你可以查看详细信息
For iOS Python development would be to embed a Python interpreter into you app and distribute your Python script with it (so to play nicely with Apple rules). In this case your Python application would be a Python interpreter which is packaged with your script and runs it automatically. As I've said - it ain't prettyYou can check details Here
希望它可以帮到你。
这篇关于我可以使用Python编写原生iPhone,Android,Windows,Blackberry应用程序吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!