Recherche

Voici les résultats de votre recherche.

math_nombres
124 Occurrences trouvées, Dernière modification :
23456790123456790123456790123457... * 1/99² = 0.0001020304050607080910111213141516171819202122232425... 747576777879808182838485868788899091929394959697990001020304050607080910111... Quelle est l'explicati... des décimales particulières si x = 0.1, 0.01 ou 0.001,... ==== Programme ==== <code python> #!/usr/b... 3 # -*- coding: utf-8 -*- """ 'Nombres magiques' 100/81 (et 10000/9801) dont les valeurs montrent des
tableau_periodique_2011
27 Occurrences trouvées, Dernière modification :
itle("Légende") frame= Frame(legend1, height=200, width= 300) #frame ouvre une nouvelle fenêtre dans laquelle on peut insérer plusieurs widgets (ici d... autre = Message(legend1, text="Autres", width=300, font="Arial 15", bg="white") #font = taille et p... sage(legend1, text="Metaux de transition", width=300, font="Arial 15", bg="#FFCCCC") metauxtransit
rotateur_biatomique @teaching:progappchim:matplotlib_gallery
21 Occurrences trouvées, Dernière modification :
ective d'importation standard de Matplotlib T = 100. # (température réduite = T / Theta) Zrot = 0. #... ------------ | 0 | 1 | 0 | 1.00000000e+00 | | 1 | 3 | 2 | 2.94059602e+00 | | 2 | 5 | 6 | 4.70
fit_modele_einstein
12 Occurrences trouvées, Dernière modification :
ées expérimentales (T, Cv) : liste_data=[ [12.9,0.00053], [16.1,0.00081], [19.8,0.00138], [24.1,0.00257], [30.1,0.00494], [33.4,0.0074], [41.3,0.0133], [47.7,0.02], [57.2,0.0365], [67,0.
ph_acides_bases_2013
8 Occurrences trouvées, Dernière modification :
[acideselect] if pkaselect < 0: x=[0.0001,0.001,0.01,0.1,1] y=-log10(x) l1=plt.semilogx(x,y,color='m',linewidth=2) lx... plt.show() elif pkaselect > 0: x=[0.0001,0.001,0.01,0.1,1] y=0.5*(pkaselect)-0.5*log10(x) l1=plt.semilogx(x,y,color='#DAB30A
conversion_temperature_2011
7 Occurrences trouvées, Dernière modification :
e modifier les tailles,... # w = Frame(F, height=500, width=500) # Création de la fenêtre de travail et défintion des dimensions # w.pack() # Bouton perm
presentation_principes
6 Occurrences trouvées, Dernière modification :
onsole, avec exécution directe <code> >>> (8.314*300/24E-3)/101325 1.0256600049346163 >>> </code> * Commandes : copyright, credits, license(), quit, hel... nt pour des nombres... <code> >>> R=8.314 >>> L=0.001 >>> V=24*L >>> n=1 >>> zero=273.15 >>> T=20+zero... *R*T/V >>> atm=101325 >>> print(P,P/atm) 101555.51000000001 1.0022749568221072 >>> </code> ==== Un pe
openbabel_jmol
5 Occurrences trouvées, Dernière modification :
94") ff.Setup(mol) ff.ConjugateGradients(100, 1.0e-5) ff.GetCoordinates(mol) return mo... -0.056 15.9994 8 O x= 0.488 y= -1.374 z= 0.299 1.00794 1 H x= 0.587 y= 0.64 z= 0.672 1.00794 1 H x= 0.584 y= 0.177 z= -1.05 1.00794 1 H x= 2.049 y= -0.08 z= -0.052 1.00794 1 H x= 0.831 y= -1.
notions_fondamentales
3 Occurrences trouvées, Dernière modification :
'agit de la [[https://www.python.org/dev/peps/pep-0008/|pep8]]. Le document du [[https://blog.impulseb... tring1))) </code> <code python string-anagramme-00.py> #!/usr/bin/env python3 # -*- coding: utf-8 -*... ython]] * [[http://stackoverflow.com/questions/3009935/looking-for-a-good-python-tree-data-structure... tions de la [[https://www.python.org/dev/peps/pep-0008/|pep8]] <note tip>Les règles étant faites pour
codes_presentation
2 Occurrences trouvées, Dernière modification :
rtle import * import sys import time reset() x=-100 y=-100 i=0 while i < 10: j=0 while j <10: up() goto(x+i*20,y+j*20) do
collection_namedtuple_exemple
2 Occurrences trouvées, Dernière modification :
s hydrogen = ChemEl('hydrogen', 1, 'H', 1, 1, 1.008) helium = ChemEl('helium', 2, 'He', 18, 1, 4.002602) print(hydrogen.atomic_weight) print(hydrogen.s
ir_spectrum_co @teaching:progappchim:matplotlib_gallery
2 Occurrences trouvées, Dernière modification :
atPlotLib) : <sxh python; title : IR-spectrum_CO-00.py> #! /usr/bin/env python # -*- coding: utf-8 -*... :teaching:progappchim:matplotlib_gallery:rotvibco-00.png|}} ===== Recherche et affichage des maxima =... nvolve]] (+ [[http://stackoverflow.com/questions/20036663/understanding-numpys-convolve|ref1]]), [http
algos_entiers
1 Occurrences trouvées, Dernière modification :
for a in range(2,n) if isprime(a)] p=primelist(1000) print(p) </code> L'algorithme peut être rendu ... e liste avec les élements non nuls p=primelist(1000) print(p) </code> ==== Références ==== * [[ht... wikipedia/commons/thumb/c/c6/Knapsack_greedy.svg/500px-Knapsack_greedy.svg.png }} Ce problème revêt u
entropie_melange
1 Occurrences trouvées, Dernière modification :
+ (1-t) * np.log(1-t) x1 = np.arange(0.0, 1., 0.001) plt.plot(x1, s(x1), 'b-') #plt.plot(x1, x1*np.
fizz_buzz
1 Occurrences trouvées, Dernière modification :
port sys if __name__=="__main__": fn = "easy-001-Fizz_Buzz-01.txt" with open(fn, 'r') as f:
grille_configurations_melange_binaire_2013
1 Occurrences trouvées, Dernière modification :
matplotlib_simple
1 Occurrences trouvées, Dernière modification :
numpy_simple
1 Occurrences trouvées, Dernière modification :
open_chemical_databases
1 Occurrences trouvées, Dernière modification :
polynomes-9
1 Occurrences trouvées, Dernière modification :
polynomes-11
1 Occurrences trouvées, Dernière modification :
tableau_periodique_2013
1 Occurrences trouvées, Dernière modification :
tkinter_gui_simple
1 Occurrences trouvées, Dernière modification :
potentiel_energy_surface @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
potentiel_morse @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :