Voici les résultats de votre recherche.
notions_fondamentales @teaching:progappchim 109 Occurrences trouvées, Dernière modification : il y a 19 mois yingeniance.io/outils-et-bonnes-pratiques-pour-un-code -python-de-bonne-qualite/|blog ingeniance]] donne ... on.com/python-pep8/|How to Write Beautiful Python Code With PEP 8]]
===== Structures conditionnelles ... cours]] avec des illustrations et des exemples de code exécutable sur le site [[http://www.pythontutor.c... omme "vrai" (true) ou "faux" (false). Exemple :
<code python>
a = 0
if a > 0 :
print("a est positif presentation_principes @teaching:progappchim 64 Occurrences trouvées, Dernière modification : il y a 21 mois column>
<flowchartjs default>
box1=>operation: Code source
→ Compilation
box2=>operation: Code objet
→ Exécution
box3=>operation: Résultat
box... AP>
<WRAP half column>
* Etape de traduction du code source en langage machine
* Liaison éventuelle du code avec des bibliothèques existantes de code compilé tkinter_gui_simple @teaching:progappchim 27 Occurrences trouvées, Dernière modification : il y a 22 mois ne étiquette (Label) affichant "Bonjour !" =====
<code python tk-00.py>
#!/usr/bin/env python
# -*- codi... ot, text="Bonjour !")
w.pack()
root.mainloop()
</code >
===== Un bouton (Button) avec une action pour é... =====
L'écriture va s'effectuer sur la console !
<code python tk-01.py>
#!/usr/bin/env python
# -*- codi... re !",command=action)
b.pack()
root.mainloop()
</code >
<note tip>Voyez à décommenter les deux lignes c images_chimie_libres 24 Occurrences trouvées, Dernière modification : il y a 23 mois dia.org/wikipedia/commons/thumb/8/89/Symbol_Resin_Code _1_PETE.svg/199px-Symbol_Resin_Code _1_PETE.svg.png}} \\ [[https://commons.wikimedia.org/wiki/File:Symbol_Resin_Code _1_PETE.svg|lien]] | {{https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Symbol_Resin_Code _01_PET.svg/199px-Symbol_Resin_Code _01_PET.svg.png numpy_simple @teaching:progappchim 24 Occurrences trouvées, Dernière modification : il y a 21 mois === Directive d'importation =====
* standard : <code >import numpy as np</code >
===== Tableaux numériques =====
On convertit facilement des listes Python en tableau numpy. Essayez ceci :
<code python>
import numpy as np
a = np.array([[1,2],[3,4]])
print(a)
print(a.dtype)
</code >
Sortie :
<code >
[[1 2]
[3 4]]
<type 'numpy.ndar testjs @teaching:progappchim 24 Occurrences trouvées, Dernière modification : il y a 8 ans ise data-lang="python" data-height="auto">
<code data-type="pre-exercise-code "></code >
<code data-type="sample-code ">
import numpy as np
x = np.arange(0, 5, 0.1);
plot_sinus_cosinus @teaching:progappchim 22 Occurrences trouvées, Dernière modification : il y a 4 ans ion par défaut des fonctions sinus et cosinus :
<code python 01-plotting_with_default_settings.py>
#! /... S)
plt.show() # vue interactive de la figure
</code >
X est un tableau numpy de 256 valeurs comprises... tés de la ligne et styles de ligne ci-dessous).
<code python 02-instantiating_defaults.py>
#! /usr/bin/... g", dpi=72)
# Show result on screen
plt.show()
</code >
===== Changer la couleur et l'épaisseur des lig initinfo 19 Occurrences trouvées, Dernière modification : il y a 10 mois isée. Vous avez reçu lors de votre inscription un code utilisateur et un mot de passe **confidentiel**. ... cation sur le réseau local de l'université. Votre code correspond à votre numéro de matricule "nnnnnn".
... Linux au répertoire temp :
* Partage Windows (<code >smb://</code >)
* serveur : fstemp.umons.ac.be
* partage : temp
* nom de domaine : UMONS
* nom d matplotlib_simple @teaching:progappchim 19 Occurrences trouvées, Dernière modification : il y a 17 mois anaconda.com/distribution/|Anaconda]] ou [[http://code .google.com/p/pythonxy/|Python (x, y)]]
* Sous G... ==== Directive d'importation ====
* standard : <code >import matplotlib as mpl
import matplotlib.pyplot as plt</code >
* alternative, simplifiée (en mode pylab, pour... btenir une certaine compatibilité avec Matlab) : <code >from pylab import *</code >
===== Graphiques de s mendeleev @teaching:progappchim 19 Occurrences trouvées, Dernière modification : il y a 2 ans /mendeleev/]]
* Page officielle, description et code source : [[https://github.com/lmmentel/mendeleev]... aboratory =====
* Créer une première cellule de code permettant l'installation de la librairie mendeleev : <code >!pip install mendeleev</code >
* Fichier exemple : {{ :teaching:progappchim:mendeleev_primer_01.ipynb algos_entiers @teaching:progappchim 17 Occurrences trouvées, Dernière modification : il y a 23 mois 9triques|ici]] !**).
Cela donne ceci en Python :
<code python pgcd.py>
#!/usr/bin/env python
# -*- codin...
return a
n1=210
n2=126
print(gcd(n1, n2))
</code >
Si on dispose des décompositions en facteurs pr... * [[http://stackoverflow.com/questions/11175131/code -for-greatest-common-divisor-in-python]]
* [[htt... ici une implémentation en Python de cette idée.
<code python nombres_premiers-01.py>
#!/usr/bin/env pyt notions_avancees @teaching:progappchim 17 Occurrences trouvées, Dernière modification : il y a 19 mois on-using-coroutines-in-python.html]]
* [[http://code .activestate.com/recipes/580628-pluggable-python-g... [[http://www.datadependence.com/2016/08/pythonic-code -video-series-yield-generators/|Processing Large D... e/a746c6f12d8bada03589]]
* [[https://medium.com/code -85/a-beginners-guide-to-python-list-comprehension... ne-line if - then - else (ternary operator) ====
<code python>
u = 10
v = 100
reponse = "u plus grand qu simulations_random_walks_codes @teaching:exos 15 Occurrences trouvées, Dernière modification : il y a 6 ans és successivement. Il est important d'exécuter le code Python et même de tester des petites modification... e>
===== Génération de nombres aléatoires =====
<code python 01_random.py>
#!/usr/bin/python
# -*- codi... print(randint(1000,9999))
print(" ")
</code >
===== Histogrammes de nombres aléatoires =====
<code python 02_random_histogram.py>
#!/usr/bin/env pyt elements_molecules @teaching:progappchim 15 Occurrences trouvées, Dernière modification : il y a 4 ans /mendeleev/]]
* Page officielle, description et code source : [[https://github.com/lmmentel/mendeleev]... sive).
==== Installation ====
via la commande <code >pip install molmass</code >
Dans jupyter :
<code >
# Install a pip package in the current Jupyter kernel
import sys
!{sys.executab polynomes-10 @teaching:progappchim 15 Occurrences trouvées, Dernière modification : il y a 8 ans Proposé et testé par RL, étudiant ba2 2012-2013.
<code python derivation.py>
#!/usr/bin/env python
# -*-... nt de la liste (terme indépendant)
return b
</code >
===== Multiplication par x =====
Proposition de AP, étudiant ba2 2012-2013 :
<code python polyx.py>
#!/usr/bin/env python
# -*- codi... liste b
b.append(a[coef])
return b
</code >
Les listes pouvant être concaténées, on peut écr representation_molecules_2013 @teaching:progappchim 11 Occurrences trouvées, Dernière modification : il y a 5 ans pandas @teaching:progappchim 10 Occurrences trouvées, Dernière modification : il y a 2 ans suite_de_fibonacci-2 @teaching:progappchim 10 Occurrences trouvées, Dernière modification : il y a 8 ans suite_de_fibonacci-3 @teaching:progappchim 9 Occurrences trouvées, Dernière modification : il y a 8 ans tp_simulations_monte-carlo_2019 @teaching:exos 8 Occurrences trouvées, Dernière modification : il y a 5 ans codes_presentation @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 4 ans factorielle-3 @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 8 ans scipy_simple @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 6 ans tris @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 24 mois trucs_astuces @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 19 mois methcalchim @teaching:methcalchim 7 Occurrences trouvées, Dernière modification : il y a 20 mois progappchim @teaching:progappchim 7 Occurrences trouvées, Dernière modification : il y a 21 mois csv @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 4 ans factorielle-2 @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-7 @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 6 ans rdkit @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 18 mois slices @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 3 ans suite_de_fibonacci-4 @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 8 ans fizz_buzz @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 8 ans openbabel_jmol @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 3 ans pylab_simple @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 3 ans rotateur_biatomique @teaching:progappchim:matplotlib_gallery 5 Occurrences trouvées, Dernière modification : il y a 7 ans analyse_images @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 4 ans bioinformatic @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 2 ans dictionary_adn_protein @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 12 ans factorielle @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 8 ans game_of_life_conway-2012 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 4 ans matrices @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 7 ans pieges @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 9 ans polynomes @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-12 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 24 mois suite_de_fibonacci @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 8 ans tableau_periodique_2011 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 4 ans urllib @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 3 ans articles_didactique_chimie 3 Occurrences trouvées, Dernière modification : il y a 10 mois biblio-10.1021-acs.jchemed.7b00218 3 Occurrences trouvées, Dernière modification : il y a 6 ans desinformations 3 Occurrences trouvées, Dernière modification : il y a 15 mois etudes-aess-tempo 3 Occurrences trouvées, Dernière modification : il y a 3 ans exos_energie_d_ionisation 3 Occurrences trouvées, Dernière modification : il y a 5 ans bokeh_simple @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 3 ans glossaire_chimie @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 6 ans osm_interrogation @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 10 ans ph-3d @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 4 ans polynomes-2 @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 8 ans pubchempy @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 3 ans potentiel_morse @teaching:progappchim:matplotlib_gallery 3 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-ed076p1136 2 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1021-ed083p791 2 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1021-ed100218z 2 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1039-b5rp90014j 2 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-9780131493926-chap9 2 Occurrences trouvées, Dernière modification : il y a 9 ans exos_empreinte_carbone 2 Occurrences trouvées, Dernière modification : il y a 5 ans informatique 2 Occurrences trouvées, Dernière modification : il y a 8 ans publis_diverses 2 Occurrences trouvées, Dernière modification : il y a 11 mois teaching_ressources_videos 2 Occurrences trouvées, Dernière modification : il y a 20 mois timeline-chimie 2 Occurrences trouvées, Dernière modification : il y a 4 ans lancer_pieces @teaching:exos 2 Occurrences trouvées, Dernière modification : il y a 2 ans paradoxe_anniversaires @teaching:exos 2 Occurrences trouvées, Dernière modification : il y a 4 ans physicochimie2-exercices @teaching:exos 2 Occurrences trouvées, Dernière modification : il y a 9 ans sequences_brins_adn @teaching:exos 2 Occurrences trouvées, Dernière modification : il y a 6 ans thermodynamique_statistique-exercices @teaching:exos 2 Occurrences trouvées, Dernière modification : il y a 2 ans chempy @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 20 mois collection_counter_exemple @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans collection_namedtuple_exemple @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans entropie_melange @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans factorielle-4 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 10 ans jupyter @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 2 ans koch_snowflake @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans math_nombres @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 5 ans periodical_table_electronegativity @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 5 ans ph_courbe_titrage_2011 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans polynomes-3 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-4 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-5 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-6 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-8 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-9 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-11 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-bonus @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 3 ans ppoo @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 22 mois random_walk_2d-simple @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans solubilite_ph_t @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 9 ans suite_de_fibonacci-5 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans tableau_periodique_2013 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 5 ans pka_pkb_plane @teaching:progappchim:matplotlib_gallery 2 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-ed074p262_10.1039-b801297k 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-ed078p481 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1021-ed084p172 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1021-ed084p1140 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1021-ed100422c 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1039-b4rp90027h 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1039-b812416g 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1039-b908246h 1 Occurrences trouvées, Dernière modification : il y a 7 ans glossaire-education 1 Occurrences trouvées, Dernière modification : il y a 3 ans revision_cheat_sheets 1 Occurrences trouvées, Dernière modification : il y a 4 ans rss-chimie 1 Occurrences trouvées, Dernière modification : il y a 7 ans terminologie-enseignement 1 Occurrences trouvées, Dernière modification : il y a 13 ans poker_menteur @teaching:exos 1 Occurrences trouvées, Dernière modification : il y a 11 ans vdemery_espci @teaching:exos 1 Occurrences trouvées, Dernière modification : il y a 7 ans attracteur_lorenz @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 5 ans calcul_matriciel_2012 @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 11 ans dictionaries_adn_arn_protein @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 9 ans epidemie_coronavirus @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 4 ans fit_modele_einstein @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 10 ans print_format @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 3 ans solvents_data_class @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 12 ans