is

Recherche

Voici les résultats de votre recherche.

notions_fondamentales
20 Occurrences trouvées, Dernière modification :
e4ed4|The Art of Writing Loops in Python - Simple is better than complex]] Yang Zhou, Medium, 03/05/20... {|}~' string.whitespace # ' \t\n\r\x0b\x0c'; \x0b is \v (vertical tab), \x0c is \f (form feed) string.printable # = digits + ascii_letters + punctuation +... ting from start position until end — 1 position s.isalnum() # checks if string is alphanumeric s.isalp
gaz_parfait_2011
8 Occurrences trouvées, Dernière modification :
met l'apparition de l'interface graphique def isolerP (): #définition de la fonction "isoler P" fen2.title("Calcul de la pression par ... oat(V.get())) #formule calculant la variable à isoler => float permet le calcul d'un nombre à virgu... #apparition de l'unité de la variable à isoler (Pa) b.grid(row=0,column=2)
algos_entiers
6 Occurrences trouvées, Dernière modification :
pplications en chimie, du fait que les atomes (et isotopes) comptent des nombres entiers de nucléons (... will have the same sign as b (so that when b is divided by it, the result comes out positive). ... strictement inférieurs à un entier donné """ def isprime(n): for x in range(2,int(n**0.5)+1): ... rimelist(n): return [a for a in range(2,n) if isprime(a)] p=primelist(1000) print(p) </code> L'a
calcul_matriciel_2012
6 Occurrences trouvées, Dernière modification :
12 from Tkinter import * from sys import * def is_number(s): try: float(s) retu... fen01.destroy () """ dim = entr1.get() if is_number(dim) and float(dim) > 0: fen02 = T... entree = entr1.get() image = is_number(entree) fen01.mainloop() ... fen04=Tk() r = invmat(s) if type(r) is str: b = Label(fen04, text= r) b
elements_molecules
5 Occurrences trouvées, Dernière modification :
empirical) print(f.mass) # average mass print(f.isotope.massnumber) # nominal mass print(f.isotope.mass) # monoisotopic mass print(f.atoms) print(f.co... (line) print(f.composition()) print(line) print(f.isotope) print(line) print(f.isotope.mass) print(line) print(f.isotope.massnumber) print(line) print(f.m
progappchim
5 Occurrences trouvées, Dernière modification :
e Thorsten Gressling (series De Gruyter Textbook) ISBN: 9783110629453 cf. [[https://www.degruyter.com/... tatis.de/e_home.htm]] * Italie : [[http://www.istat.it/English/index.htm]] * Espagne : [[http:... nt des éléments supplémentaires * exemple : isothermes de van der Waals * Utiliser la librai... .6b00058|cet article]] * simulation du modèle d'Ising : [[http://rajeshrinet.github.io/blog/2014/isi
potentiel_energy_surface @teaching:progappchim:matplotlib_gallery
5 Occurrences trouvées, Dernière modification :
e [[http://www.degruyter.com/view/j/zpch.2013.227.issue-9-11/zpch-2013-9023/zpch-2013-9023.xml|On Simp... ding: utf-8 -*- """ Tracés de lignes de niveau ou isolignes Application : Potentiel Energy Surface de ... on éventuelle de l'échelle de couleur plt.title('Isolignes') plt.xlabel('x (pm)') plt.ylabel('y (pm)'... e und angewandte physikalische Chemie. Volume 35, Issue 9, pages 552–555, September 1929 * [[https:/
notions_avancees
4 Occurrences trouvées, Dernière modification :
prehensions-vs-built-in-functions-in-python-which-is-better-1e2c9646fafe|Comparing List Comprehensions vs. Built-In Functions in Python: Which Is Better? An in-depth analysis of syntax, readabili... * [[http://stackoverflow.com/questions/36636/what-is-a-closure]] * [[http://programmers.stackexchange.com/questions/40454/what-is-a-closure]] ===== Programmation fonctionnelle ==
plotly_simple
4 Occurrences trouvées, Dernière modification :
cience.com/matplotlib-vs-plotly-express-which-one-is-the-best-library-for-data-visualization-7a96dbe3ff09|Matplotlib vs. Plotly Express: Which One is the Best Library for Data Visualization?]] by Ismael Araujo, July 2021, Towards Data Science (Medium... s Scientific Visualization - Although static plot is the default option for scientific presentation, i
game_of_life_conway-2012
3 Occurrences trouvées, Dernière modification :
n three or fewer than two neighbours; a dead cell is brought to life if it has exactly three neighbour... f.sizey = sizey #numpy.zeros(sizex,sizey) is a better choice, #but an additional depen
jupyter
3 Occurrences trouvées, Dernière modification :
ttps://levelup.gitconnected.com/google-colab-what-is-it-how-to-use-it-and-why-should-i-care-721bb8a88c... Juan Luis Cano: Jupyter (IPython); How a notebook is changing science]] * [[https://www.youtube.com/... ature.com/articles/d41586-018-07196-1|Why Jupyter is data scientists’ computational notebook of choice
openbabel_jmol
3 Occurrences trouvées, Dernière modification :
mol) mol = OBMolMinimize(mol) if filename is None: return mol # save structures in subfold... molecules['1-propanol'] = 'CCCO' molecules['isopropanol'] = 'CC(O)C' molecules['n-butanol'] ... olecules['butan-2-ol'] = 'CC(O)CC' molecules['isobutanol'] = 'CC(C)CO' molecules['tert-butanol
bioinformatic
2 Occurrences trouvées, Dernière modification :
l" : * [[https://www.scienceinschool.org/2010/issue17/bioinformatics|Bioinformatics with pen and p... 2010 * [[https://www.scienceinschool.org/2014/issue29/online_bioinf|Using biological databases to
numpy_simple
2 Occurrences trouvées, Dernière modification :
o NumPy]] * [[https://pythonsimplified.com/what-is-timeit-module-in-python/|What is timeit module in Python?]] Chetan Ambi, 02/02/2022 (mesure du temps
pavage_penrose_2013
2 Occurrences trouvées, Dernière modification :
s est un entier, retourne cet entier""" if s.isdigit() and long(s) > 0: return long(s... etour en arrière def convert_to_long(s): if s.isdigit(): return long(s) # Convertit en
representation_molecules_2013
2 Occurrences trouvées, Dernière modification :
analyse_images
1 Occurrences trouvées, Dernière modification :
dictionary_adn_protein
1 Occurrences trouvées, Dernière modification :
epidemie_coronavirus
1 Occurrences trouvées, Dernière modification :
fizz_buzz
1 Occurrences trouvées, Dernière modification :
koch_snowflake
1 Occurrences trouvées, Dernière modification :
math_nombres
1 Occurrences trouvées, Dernière modification :
matplotlib_simple
1 Occurrences trouvées, Dernière modification :
maxwell-boltzmann
1 Occurrences trouvées, Dernière modification :
pandas
1 Occurrences trouvées, Dernière modification :
ph-3d
1 Occurrences trouvées, Dernière modification :
plot_sinus_cosinus
1 Occurrences trouvées, Dernière modification :
polynomes-7
1 Occurrences trouvées, Dernière modification :
presentation_principes
1 Occurrences trouvées, Dernière modification :
rdkit
1 Occurrences trouvées, Dernière modification :
solvents_data_class
1 Occurrences trouvées, Dernière modification :
testjs
1 Occurrences trouvées, Dernière modification :
trucs_astuces
1 Occurrences trouvées, Dernière modification :
pka_pkb_plane @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :