Accueil > Programmation > python > documentation pour python
documentation pour python
Publié le 26 octobre 2017, dernière mise-à-jour le 17 avril 2024, 11 visites, visites totales.
fonction internes :
https://docs.python.org/3/library/functions.html
NON vérifiés :
http://python.developpez.com/cours/apprendre-python3/
http://greenteapress.com/wp/think-python/
python pour android :
http://kivy.org/docs/guide/basic.html
https://code.google.com/p/android-scripting/
kivy
https://github.com/kivy/python-for-android
qpython , jython
http://www.openbookproject.net/thinkCSpy
http://greenteapress.com/wp/think-python/
http://lanyrd.com/2012/europython/srzmt/
http://thp.io/2012/europython/
import androidhelper
droid = android.Android()
droid.makeToast(’hello’)
[/code]
Bottle exemple :
[code]
from bottle import route, run, template, request
@route(’/’)
@route(’/index’)
def index() :
return template(’’’Hello World’’’)