start

Recherche

Voici les résultats de votre recherche.

notions_fondamentales
155 Occurrences trouvées, Dernière modification :
ujours effectuer une série d'actions dans un certain ordre. La description structurée de ces actions e... ions** : plusieurs instructions consécutives au sein d'une structure (conditionnelle, ou autre, cf. plus loin), et qui partagent donc le même décalage d'indent... * **Structures imbriquées** : une structure au sein d'une autre structure ! (aisément identifiables g
calcul_matriciel_2012
74 Occurrences trouvées, Dernière modification :
<sxh python; title : calcul_matriciel.py> #!/usr/bin/env python # -*- coding: UTF-8 -*- #http://www.si... ans la m ième ligne et la n ième colonne" Mlin=len(M) result=[] Rep=[] for i in range(Mlin): if i!=m: for j in range(Mlin): if
matplotlib_simple
66 Occurrences trouvées, Dernière modification :
orée : <code python simple_series_01.py> #! /usr/bin/env python # -*- coding: utf-8 -*- """ Matplotib ... ,3.,5.,7.,11.,13.,17.,19.] serie_y1 = [x**2 for x in serie_x] # ces lignes utilisent la technique ... "liste en compréhension" serie_y2 = [x**1.5 for x in serie_x] # pour définir efficacement une liste ... nde : <code python simple_series_02.py> #! /usr/bin/env python # -*- coding: utf-8 -*- """ Matplotib
notions_avancees
45 Occurrences trouvées, Dernière modification :
/techtofreedom/7-levels-of-using-the-zip-function-in-python-a4bd22ee8bcd|7 Levels of Using the Zip Function in Python]] * itertools.cycle() est une méthode utile pour répéter ou parcourir sans fin les éléments d'une liste ou d'une table itérativi... rateurs-fr.html]] * [[https://wiki.python.org/moin/Generators]] * [[http://sahandsaba.com/combinat
pandas
37 Occurrences trouvées, Dernière modification :
[[http://pandas.pydata.org/pandas-docs/stable/10min.html|10 minutes to pandas]] * [[http://pandas.p... s-cheat-sheet|Pandas Cheat Sheet for Data Science in Python]] ===== Applications, exemples ===== ===... v11n2/datasets.heinz.html|Exploring Relationships in Body Dimensions]]. Extensions : * Tester et ut... n jse-dataset-body-dimensions-read-10.py> #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created o
epidemie_coronavirus
31 Occurrences trouvées, Dernière modification :
EIR : Susceptible, Exposed ("porteur contaminé, sain, en incubation), Infectious (contagieux), Recover... ttps://en.wikipedia.org/wiki/Compartmental_models_in_epidemiology#The_SEIR_model|SEIR model]] * [[ht... n of the number of Coronavirus Disease 2019 cases in Wuhan, China]] → paramètres pour le COVID-19 * ... ta.org/getting-data-about-coronavirus-with-python-in-italy/?doing_wp_cron=1582794641.96051907539367675
numpy_simple
31 Occurrences trouvées, Dernière modification :
on]]. </note> <code python arrays_01.py> #! /usr/bin/env python # -*- coding: utf-8 -*- """ Divers cod... lémentaires : <code python arrays_02.py> #! /usr/bin/env python # -*- coding: utf-8 -*- """ Divers cod... cielle print(e, e.ndim, e.shape, e.dtype) f = np.sin(np.pi*0.5*a) # fonction mathématique et adaptatio... (g, g.ndim, g.shape, g.dtype) print(np.sum(a),np.min(a), np.max(a)) # somme des éléments, minimum, ma
bioinformatic
29 Occurrences trouvées, Dernière modification :
de python Counting_DNA_Nucleotides-01.py> #!/usr/bin/env python # -*- coding: utf-8 -*- """ On dispose... thode .count() bases = ["A","C","G","T"] for base in bases: print(adn.count(base),) print() # Variante : for c in 'ACGT': print(adn.count(c),) print() # variante un peu moins lisible out = [] for c in 'ACGT': out.append(str(adn.count(c))) print('
ppoo
25 Occurrences trouvées, Dernière modification :
morphisme <code python intro-OO-01.py3> #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Introduction to object-oriented programming in Python Led with number and status attributes """... * [[https://towardsdatascience.com/how-i-explain-oop-to-a-data-scientist-in-5-minutes-44faf72ecca7|How I Explain OOP to a Data Scientist in 5 Minutes]
polynomes-10
24 Occurrences trouvées, Dernière modification :
a2 2012-2013. <code python derivation.py> #!/usr/bin/env python # -*- coding: utf-8 -*- def polyderiv(... t n = len(b) -1 #ordre du polynôme for i in range (n+1): b[i] = b[i] * i #on redéfin... nt ba2 2012-2013 : <code python polyx.py> #!/usr/bin/env python # -*- coding: utf-8 -*- def polyx(a): ... liste dont le premier terme vaut 0. for coef in range(len(a)): #Pour tout les coefficients de
progappchim
24 Occurrences trouvées, Dernière modification :
e-all|Computer Science For All]] (President Obama in his 2016 State of the Union Address) ===== Notio... : * ce {{ :teaching:progappchim:jupyter_primer_in_jupyter-02.ipynb.zip |Tutoriel Jupyter en Jupyter... ://pgi-jcns.fz-juelich.de/portal/pages/pymoldyn-main.html|pyMolDyn]] * [[https://chemview.readthedoc... vec la librairie Turtle * [[dictionary_adn_protein|Traduction de l'ADN en séquence d'acides aminés (
algos_entiers
23 Occurrences trouvées, Dernière modification :
ne ceci en Python : <code python pgcd.py> #!/usr/bin/env python # -*- coding: UTF-8 -*- def gcd(a, b):... estions/11175131/code-for-greatest-common-divisor-in-python]] * [[https://docs.python.org/dev/librar... ée. <code python nombres_premiers-01.py> #!/usr/bin/env python # -*- coding: UTF-8 -*- """ Liste de n... s à un entier donné """ def isprime(n): for x in range(2,int(n**0.5)+1): if n % x == 0:
tkinter_gui_simple
21 Occurrences trouvées, Dernière modification :
"Bonjour !" ===== <code python tk-00.py> #!/usr/bin/env python # -*- coding: utf-8 -*- from tkinter ... r sur la console ! <code python tk-01.py> #!/usr/bin/env python # -*- coding: utf-8 -*- from tkinter ... ntroduire du texte <code python tk-02.py> #!/usr/bin/env python # -*- coding: utf-8 -*- from tkinter ... fonction "action") <code python tk-03.py> #!/usr/bin/env python # -*- coding: utf-8 -*- from tkinter
game_of_life_conway-2012
20 Occurrences trouvées, Dernière modification :
python Conway_Game_of_Life_2D-JK-2012.py> #!/usr/bin/env python # -*- coding: utf-8 -*- """A minimal ... d nearest and next-nearest neighbours (calculated in Grid::step). A living cell dies of overcrowding o... fe if it has exactly three neighbours (determined in Cell::setNextState). Iain Haslam, June 2005. """ from tkinter import * import time #==========
presentation_principes
19 Occurrences trouvées, Dernière modification :
rols=1&show_progress_bar=1&build_all_lists=1&open_in_new_window=1~~ ====== Programmer en Python =====... ns dans un langage compréhensible par un être humain, mais transformable en d'autres instructions comp... nd usage]] {{ https://docs.python.org/3/_images/win_installer.png }} ==== Ídle3 : interface d'exécut... le programme * Exécuter <code python> #!/usr/bin/env python # -*- coding: utf-8 -*- """ Programme
suite_de_fibonacci-3
19 Occurrences trouvées, Dernière modification :
plot_sinus_cosinus
18 Occurrences trouvées, Dernière modification :
ph_acides_bases_2013
15 Occurrences trouvées, Dernière modification :
polynomes-7
15 Occurrences trouvées, Dernière modification :
fit_modele_einstein
13 Occurrences trouvées, Dernière modification :
mendeleev
13 Occurrences trouvées, Dernière modification :
plotly_simple
13 Occurrences trouvées, Dernière modification :
openbabel_jmol
12 Occurrences trouvées, Dernière modification :
potentiel_energy_surface @teaching:progappchim:matplotlib_gallery
12 Occurrences trouvées, Dernière modification :
elements_molecules
11 Occurrences trouvées, Dernière modification :
pavage_penrose_2013
11 Occurrences trouvées, Dernière modification :
bokeh_simple
10 Occurrences trouvées, Dernière modification :
grille_configurations_melange_binaire_2013
10 Occurrences trouvées, Dernière modification :
polynomes-11
10 Occurrences trouvées, Dernière modification :
representation_molecules_2013
10 Occurrences trouvées, Dernière modification :
suite_de_fibonacci-4
10 Occurrences trouvées, Dernière modification :
math_nombres
9 Occurrences trouvées, Dernière modification :
solubilite_ph_t
9 Occurrences trouvées, Dernière modification :
courbe_predominance_acide_2013
8 Occurrences trouvées, Dernière modification :
jupyter
8 Occurrences trouvées, Dernière modification :
tris
8 Occurrences trouvées, Dernière modification :
potentiel_morse @teaching:progappchim:matplotlib_gallery
8 Occurrences trouvées, Dernière modification :
altair_simple
7 Occurrences trouvées, Dernière modification :
csv
7 Occurrences trouvées, Dernière modification :
dictionaries_adn_arn_protein
7 Occurrences trouvées, Dernière modification :
ensemble_mandelbrot_2013
7 Occurrences trouvées, Dernière modification :
lennard-jones
7 Occurrences trouvées, Dernière modification :
solvents_data_class
7 Occurrences trouvées, Dernière modification :
dictionary_adn_protein
6 Occurrences trouvées, Dernière modification :
koch_snowflake
6 Occurrences trouvées, Dernière modification :
matrices
6 Occurrences trouvées, Dernière modification :
ph-3d
6 Occurrences trouvées, Dernière modification :
polynomes-8
6 Occurrences trouvées, Dernière modification :
tableau_periodique_2011
6 Occurrences trouvées, Dernière modification :
factorielle-3
5 Occurrences trouvées, Dernière modification :
fizz_buzz
5 Occurrences trouvées, Dernière modification :
polynomes-bonus
5 Occurrences trouvées, Dernière modification :
regression_lineaire_2013
5 Occurrences trouvées, Dernière modification :
tableau_periodique_2013
5 Occurrences trouvées, Dernière modification :
pka_pkb_plane @teaching:progappchim:matplotlib_gallery
5 Occurrences trouvées, Dernière modification :
attracteur_lorenz
4 Occurrences trouvées, Dernière modification :
codes_presentation
4 Occurrences trouvées, Dernière modification :
collection_counter_exemple
4 Occurrences trouvées, Dernière modification :
diffusion_chimique_1d
4 Occurrences trouvées, Dernière modification :
osm_interrogation
4 Occurrences trouvées, Dernière modification :
polynomes-5
4 Occurrences trouvées, Dernière modification :
polynomes-6
4 Occurrences trouvées, Dernière modification :
polynomes-9
4 Occurrences trouvées, Dernière modification :
polynomes-12
4 Occurrences trouvées, Dernière modification :
random_walk_2d-simple
4 Occurrences trouvées, Dernière modification :
suite_de_fibonacci-2
4 Occurrences trouvées, Dernière modification :
trucs_astuces
4 Occurrences trouvées, Dernière modification :
analyse_images
3 Occurrences trouvées, Dernière modification :
conversion_temperature_2011
3 Occurrences trouvées, Dernière modification :
factorielle-2
3 Occurrences trouvées, Dernière modification :
glossaire_chimie
3 Occurrences trouvées, Dernière modification :
polynomes-4
3 Occurrences trouvées, Dernière modification :
pylab_simple
3 Occurrences trouvées, Dernière modification :
scikit_learn
3 Occurrences trouvées, Dernière modification :
scipy_simple
3 Occurrences trouvées, Dernière modification :
slices
3 Occurrences trouvées, Dernière modification :
maxwell-boltzmann
2 Occurrences trouvées, Dernière modification :
ph_courbe_titrage_2011
2 Occurrences trouvées, Dernière modification :
pieges
2 Occurrences trouvées, Dernière modification :
polynomes-2
2 Occurrences trouvées, Dernière modification :
polynomes-3
2 Occurrences trouvées, Dernière modification :
print_format
2 Occurrences trouvées, Dernière modification :
rdkit
2 Occurrences trouvées, Dernière modification :
suite_de_fibonacci-5
2 Occurrences trouvées, Dernière modification :
testjs
2 Occurrences trouvées, Dernière modification :
urllib
2 Occurrences trouvées, Dernière modification :
ir_spectrum_co @teaching:progappchim:matplotlib_gallery
2 Occurrences trouvées, Dernière modification :
rotateur_biatomique @teaching:progappchim:matplotlib_gallery
2 Occurrences trouvées, Dernière modification :
algos_divers
1 Occurrences trouvées, Dernière modification :
chempy
1 Occurrences trouvées, Dernière modification :
collection_namedtuple_exemple
1 Occurrences trouvées, Dernière modification :
entropie_melange
1 Occurrences trouvées, Dernière modification :
gaz_parfait_2011
1 Occurrences trouvées, Dernière modification :
multilateration
1 Occurrences trouvées, Dernière modification :
periodical_table_electronegativity
1 Occurrences trouvées, Dernière modification :
pressions_partielles_systemes_non_ideaux
1 Occurrences trouvées, Dernière modification :
t-test
1 Occurrences trouvées, Dernière modification :
histogramme_simple @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
  • start.txt
  • Dernière modification : 2021/09/09 08:56
  • de villersd