
Python is a cross-platform, object-oriented programming language (♦ see DEF), created in 1991.
It allows to create, among other things, Web applications, softwares and scripts system.
Code Examples
→ Let's start with very simple codes. The more you progress, page after page, the more sophisticated the scripts will be. However, you must go over 30 to 40 pages per level, before moving on to the next step...
→ In order to evaluate your codes, click on the icon on the left at the bottom of the page (gears), then choose a compiler from the list that will be open in another tab. Finally, test your work.
NOW REPRODUCE AND IMMERSE YOURSELF!
C 0001 - Hello World !
print("Hello World!")
C 0002 - Variables
var_1 = "Hello" var_2 = "People" print(var_1) print(var_2)
C 0003 - Numbers
a = 33 b = 48 if b > a: print("b est plus grand que a")
C 0004 - Numbers
a = 1 while a < 6: print(a) if (a == 4): break a+= 1

CHOISISSEZ VOTRE COMPILATEUR
Reproduisez ce code, en choisissant l'un des compilateurs (♦ voir DEF) ci-dessous (ne copiez-collez pas ! Ce serait trop facile). Tous ont la même fonction, choisissez-en un en tenant simplement compte de vos préférences.
Lorsque vous copiez votre code, remplacez le code existant (par défaut) figurant déjà dans le compilateur, par le vôtre.
Attention ! Pour certains de ces compilateurs, vous devez vous-même choisir le langage de programmation, dans le menu qui vous est alors proposé. Bien évidemment, n'oubliez pas de cliquer sur RUN !
Python Technical Specifications
Most Recent Versions
Frameworks
Tools And Methodologies
Tests
Info+ (Python)
* Created by Guido van Rossum
* Developed by Python Software Foundation
* Influenced by Java
* Cross-platform
* Free license (Python Software Foundation License)