Skip to content

Instantly share code, notes, and snippets.

View alain-andre's full-sized avatar

Alain ANDRE alain-andre

View GitHub Profile
@alain-andre
alain-andre / base_python.md
Last active December 29, 2015 20:19
Liste des commandes de base de Python

Décalarations

String

tring = "truc"

Integer

integer = 0

Lists

list = [1, 'truc', ['apple', 'orange', 'banana']]

>>> print list[0]

1