teaching:informatique

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
Prochaine révisionLes deux révisions suivantes
teaching:informatique [2012/01/23 16:44] – créée villersdteaching:informatique [2012/07/01 16:18] villersd
Ligne 1: Ligne 1:
-Cours, exercices et stages :+====== Informatique appliquée (programmation, méthodes numériques,...) ====== 
 +===== Cours, exercices et stages : =====
  
   * Initiation à l’informatique (bachelier en sciences chimiques, première année, 20 H cours)   * Initiation à l’informatique (bachelier en sciences chimiques, première année, 20 H cours)
Ligne 6: Ligne 7:
  
 Les détails du cours (fiches ECTS) sont disponibles à partir des pages web des [[http://www.umons.ac.be/FR/PDC|programmes de cours de l’UMONS]]. Les détails du cours (fiches ECTS) sont disponibles à partir des pages web des [[http://www.umons.ac.be/FR/PDC|programmes de cours de l’UMONS]].
 +
 +===== Python, un langage accessible et performant : =====
 +Voici un petit exemple de programme Python :
 +<sxh python; title : 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=str(raw_input("Well, say me hello too, please !"))
 +print 'OK, you just said me "'+some_words+'" \nBye !'
 +</sxh>
 +
 +===== Références =====
 +==== Livres ====
 +  * [[http://www.springer.com/statistics/computational+statistics/book/978-3-642-28069-6|Solving Differential Equations in R]], chez Springer, et  en version électronique sur [[http://www.springerlink.com/content/978-3-642-28070-2#section=1080286&page=1|SpringerLink]]
 +==== Sites web ====
  • teaching/informatique.txt
  • Dernière modification : 2017/02/24 11:05
  • de villersd