
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 pass the cape of 30 to 40 pages per level, before moving on to the next step... COPY AND IMMERSE YOURSELF!
C 0001 - Hello World !
Reproduce this code (please do not copy-paste!). Watch out for indentation!
print("Hello World!")
C 0002 - Variables
Reproduce this code (please do not copy-paste!). Watch out for indentation!
var_1 = "Hello" var_2 = "People" print(var_1) print(var_2)
C 0003 - Numbers
Reproduce this code (please do not copy-paste!). Watch out for indentation!
a = 33 b = 48 if b > a: print("b est plus grand que a")
C 0004 - Exit From A Loop
Reproduce this code (please do not copy-paste!). Watch out for indentation!
a = 1 while a < 6: print(a) if (a == 4): break a+= 1
Python Technical Specifications
Most Recent Versions
Frameworks
Tools And Methodologies
Testing
Info+ (Python)
* Created by Guido van Rossum
* Developed by Python Software Foundation
* Influenced by Java
* Cross-platform
* Free license (Python Software Foundation License)
Tools+ (Python)
Practical Cases
CASE 1
BASIC LEVEL
Print a selection according to age
This little program will allow you to choose, according to the variables you have added yourself, the usernames to print.
CASE 2
ADVANCED LEVEL
Create a database (customers)
This little kit will allow you to design a database to manage a basic customer portfolio.
CASE 3
EXPERT LEVEL
Develop a news App.
Design and develop an application with Android Studio, managing content hosted by a resource website on a classic Web server (Hybrid App.).
News
- Python
- Hits: 239