Table des matières

Informatique appliquée (programmation, méthodes numériques,...)

Cours, exercices et stages :

Les détails des cours (fiches ECTS) sont disponibles à partir des pages web des programmes de cours de l’UMONS.

Python, un langage accessible et performant :

Voici un petit exemple de programme Python affiché avec une coloration de la syntaxe :

Hello_World_python_program.py
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
#=======================================================================
#title           :Hello_World_python_program.py
#description     :This program will output the 'Hello World !' string
#                 and some more stuff.
#author          :Anybody Candoit
#date            :20120501
#version         :0.4
#usage           :python pyscriptname.py
#notes           :with extended header
#python_version  :2.7.2  
#licence         :Creative Commons CC BY-SA 3.0
#=======================================================================
"""
Documentation (DocString) :
This small program will output the 'Hello World !' string. After that
he will ask to enter some words that will be echoed.
"""
 
Phrase = 'Hello World !'
print(Phrase)
some_words = input("Well, say me hello too, please !")
print('OK, you just said me "' + some_words + '" \nBye !')