Voici les résultats de votre recherche.
articles_didactique_chimie @teaching 233 Occurrences trouvées, Dernière modification : il y a 3 mois -online|Journal of Chemical Education - Resources for Teaching Your Chemistry Class Online: A Free to R... d'articles]] sur :
* Constructivism as a Lens for Understanding Student Learning
* Student Conc... .jchemed.3c00224|Development and Use of Flowchart for Preservice Chemistry Teachers’ Problem Solving on... 21/acs.jchemed.2c00319|Inquiry-Based Laboratories for Students to Investigate the Concepts of Acid–Base psychologie_de_l_education @teaching 117 Occurrences trouvées, Dernière modification : il y a 7 mois ing?doi=10.1037%2Fcap0000290|An advance organizer for student learning: Choke points and pitfalls in st... te.net/publication/352503921_An_advance_organizer_for _student_learning_Choke_points_and_pitfalls_in_studying|(15) An advance organizer for student learning: Choke points and pitfalls in st... s/teaching-learning/principles/|Top 20 Principles for Pre-K to 12 Education]] American Psychological As desinformations @teaching 97 Occurrences trouvées, Dernière modification : il y a 3 mois ress, anything can happen. What makes it possible for a totalitarian or any other dictatorship to rule ... get not only one lie—a lie which you could go on for the rest of your days—but you get a great number ... [https://www.criticalthinking.org/|The Foundation for Critical Thinking]]
* [[https://www.criticalt... r. Richard Paul & Dr. Linda Elder, The Foundation for Critical Thinking, 2008
* Belgique
* [[http stackexchange-chimie @teaching 69 Occurrences trouvées, Dernière modification : il y a 6 mois r-observed-after-boiling-water-in-electric-kettle-for -many-weeks|White powder observed after boiling water in electric kettle for many weeks]]
* [[http://chemistry.stackexchange... 2/why-is-phenolphthalein-an-appropriate-indicator-for -titration-of-a-strong-acid-w|Why is phenolphthalein an appropriate indicator for titration of a strong acid with a strong base?]] python @floss 67 Occurrences trouvées, Dernière modification : il y a 7 mois b.io/py_resources/beginners.html|Python Resources for Everybody]]
* [[https://github.com/Asabeneh/30-... /30-seconds-of-python: Short Python code snippets for all your development needs]]
* [[https://github... rekhleb/learn-python: 📚 Playground and cheatsheet for learning Python. Collection of Python scripts tha... irst experience programming]], specially designed for [[http://code.org/|the Hour of Code]]
* [[htt calcul_matriciel_2012 @teaching:progappchim 66 Occurrences trouvées, Dernière modification : il y a 10 ans Mlin=len(M)
result=[]
Rep=[]
for i in range(Mlin):
if i!=m:
for j in range(Mlin):
if j!=n... # ligne ou n ième colonne
for k in range(0,len (result),Mlin-1):
Re... ourne la transposée de la matrice"""
s=[]
for i in range(len(n[0])): #correspond à la dimension notions_fondamentales @teaching:progappchim 31 Occurrences trouvées, Dernière modification : il y a 7 mois tilisés par le langage lui-même (if, elif, while, for , else, print,...).
* Instruction d'**affectatio... print(a, a**2, a**3)
</code>
L'**instruction for ** ([[https://docs.python.org/3/reference/compound_stmts.html#for |documentation officielle]]) permet d'itérer sur u... ne séquence "chaîne de caractères".
<code python>
for i in range(11):
print(i, i**2, i**3)
</code>
teaching_ressources_videos @teaching 25 Occurrences trouvées, Dernière modification : il y a 8 mois luebutton.org/]] web conferencing system designed for online learning
* [[https://bigbluebutton.org/teachers/|BigBlueButton For Teachers]]
* conversions de vidéos :
* [[ht... ttps://medium.com/mit-media-lab/a-few-simple-tips-for -better-online-meetings-covid-19-edition-385af7bec... skubuntu.com/questions/829765/how-to-record-voice-for -a-slide-in-libreoffice-impress]]
* documents pa syntax @wiki 25 Occurrences trouvées, Dernière modification : il y a 8 mois e:namespaces]] by using a colon in the pagename.
For details about namespaces see [[doku>namespaces]].... ki]] links. These are quick links to other Wikis. For example this is a link to Wikipedia's page about ... ]] links. These are quick links to other Wikis.
For example this is a link to Wikipedia's page about ... er\share|this]] are recognized, too.
Notes:
* For security reasons direct browsing of windows share logiciels @floss 21 Occurrences trouvées, Dernière modification : il y a 6 semaines /whatsapp-alternatives|Best WhatsApp alternatives for privacy]] Douglas Crawford, Proton, 09/12/2022
... //medium.com/interviewnoodle/best-note-taking-app-for -non-note-takers-c888180b275a|Best Note Taking App For Non-Note Takers…]]
* [[https://medium.com/m... arning-ai/i-wanted-a-perfect-note-taking-workflow-for -my-data-science-learnings-and-i-settled-for -this- simulations_random_walks_codes @teaching:exos 21 Occurrences trouvées, Dernière modification : il y a 5 ans valeurpiece = [0.01,0.02,0.05,0.1,0.2,0.5,1.,2.]
for i in range(1):
# choice : random choice of an... ock value to "randomly" initiate the generator !
for j in range(3):
#seed('ma chaîne personnielle'... seed() # to randomly initiate the generator
for i in range(10):
print(randint(1000,9999))... # reproducible initialization
seed()
rval = []
for j in range(100000):
rval.append(randint(0,99) bioinformatic @teaching:progappchim 19 Occurrences trouvées, Dernière modification : il y a 15 mois de la mé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)))
pr... hnique "list comprehension"
count = [adn.count(c) for c in 'ACGT']
for val in count:
print(val,)
pr matplotlib_simple @teaching:progappchim 18 Occurrences trouvées, Dernière modification : il y a 5 mois ,1.,2.,3.,5.,7.,11.,13.,17.,19.]
serie_y1 = [x**2 for x in serie_x] # ces lignes utilisent la techn... ue de "liste en compréhension"
serie_y2 = [x**1.5 for x in serie_x] # pour définir efficacement une l... 3., 5., 7., 11., 13., 17., 19.]
serie_y1 = [x**2 for x in serie_x]
serie_y2 = [x**1.5 for x in serie_x]
plt.xlim(0, 20.) #les limites suivant x
plt.ylim pandas @teaching:progappchim 18 Occurrences trouvées, Dernière modification : il y a 13 mois blog/python-pandas-cheat-sheet|Pandas Cheat Sheet for Data Science in Python]]
===== Applications, exe... hout white spaces
names = [name.replace(' ', '_') for name in names]
print(names)
namesfr = [
'Lar... e most popular repositories to brush up on Pandas for beginners and experts alike]] Byron Dolon, Medium... itHub - ajcr/100-pandas-puzzles: 100 data puzzles for pandas, ranging from short and simple to super tr polynomes-10 @teaching:progappchim 17 Occurrences trouvées, Dernière modification : il y a 7 ans départ
n = len(b) -1 #ordre du polynôme
for i in range (n+1):
b[i] = b[i] * i #on re... #Nouvelle liste dont le premier terme vaut 0.
for coef in range(len(a)): #Pour tout les coeffici... ion == ordre du polynôme avant intégration +1
for i in range (n): # on balaie sur toutes les puiss... :
while(len(c)<p+1):
c.append(0)
for k in range(p+1): # pour toutes les pui 5_conceptions_erronees_courantes_sur_l_apprentissage @teaching 15 Occurrences trouvées, Dernière modification : il y a 17 mois publis_diverses @teaching 15 Occurrences trouvées, Dernière modification : il y a 12 mois game_of_life_conway-2012 @teaching:progappchim 15 Occurrences trouvées, Dernière modification : il y a 3 ans ressources_educatives_libres @floss 14 Occurrences trouvées, Dernière modification : il y a 13 jours ressourceschimie @teaching 14 Occurrences trouvées, Dernière modification : il y a 2 ans adamboxer-approche_pas_a_pas_des_travaux_pratiques @teaching 13 Occurrences trouvées, Dernière modification : il y a 21 mois the_need_for_a_theory_of_learning @teaching 13 Occurrences trouvées, Dernière modification : il y a 3 mois methcalchim @teaching:methcalchim 13 Occurrences trouvées, Dernière modification : il y a 8 mois config_ubuntu_server_rpi3 @floss 12 Occurrences trouvées, Dernière modification : il y a 7 mois linux @floss 12 Occurrences trouvées, Dernière modification : il y a 7 semaines wacom @floss 12 Occurrences trouvées, Dernière modification : il y a 3 ans poker_menteur @teaching:exos 12 Occurrences trouvées, Dernière modification : il y a 10 ans plotly_simple @teaching:progappchim 12 Occurrences trouvées, Dernière modification : il y a 7 mois activestateselection @floss:python 11 Occurrences trouvées, Dernière modification : il y a 9 ans presentation_principes @teaching:progappchim 11 Occurrences trouvées, Dernière modification : il y a 9 mois notions_avancees @teaching:progappchim 10 Occurrences trouvées, Dernière modification : il y a 7 mois tmp 9 Occurrences trouvées, Dernière modification : il y a 22 mois suite_de_fibonacci-3 @teaching:progappchim 9 Occurrences trouvées, Dernière modification : il y a 7 ans mastodon @floss 8 Occurrences trouvées, Dernière modification : il y a 4 mois articles_didactique_chimie-george_m_bodner @teaching 8 Occurrences trouvées, Dernière modification : il y a 2 ans kirschner-how_teaching_happens @teaching 8 Occurrences trouvées, Dernière modification : il y a 15 mois paradoxe_anniversaires @teaching:exos 8 Occurrences trouvées, Dernière modification : il y a 3 ans algos_entiers @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 11 mois mendeleev @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 13 mois solubilite_ph_t @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 8 ans bash_scripts @floss 7 Occurrences trouvées, Dernière modification : il y a 6 mois biblio-10.1007-s10648-021-09646-1 @teaching 7 Occurrences trouvées, Dernière modification : il y a 7 mois ensemble_mandelbrot_2013 @teaching:progappchim 7 Occurrences trouvées, Dernière modification : il y a 9 ans polynomes-7 @teaching:progappchim 7 Occurrences trouvées, Dernière modification : il y a 5 ans polynomes-11 @teaching:progappchim 7 Occurrences trouvées, Dernière modification : il y a 7 ans config_ubuntu_server_rpi1 @floss 6 Occurrences trouvées, Dernière modification : il y a 4 ans latex @floss 6 Occurrences trouvées, Dernière modification : il y a 11 mois unison @floss 6 Occurrences trouvées, Dernière modification : il y a 7 jours biblio-10.1021-acs.chemrev.8b00020 @teaching 6 Occurrences trouvées, Dernière modification : il y a 3 ans kirschner-how_learning_happens @teaching 6 Occurrences trouvées, Dernière modification : il y a 15 mois lancer_pieces @teaching:exos 6 Occurrences trouvées, Dernière modification : il y a 16 mois numpy_simple @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 9 mois pavage_penrose_2013 @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 10 ans representation_molecules_2013 @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 4 ans progappchim @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 9 mois tkinter_gui_simple @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 11 mois config_ubuntu_server-18.04_rpi3 @floss 5 Occurrences trouvées, Dernière modification : il y a 3 ans cairo-tutoriel @floss:python 5 Occurrences trouvées, Dernière modification : il y a 12 ans system_of_linear_equations @teaching:methcalchim 5 Occurrences trouvées, Dernière modification : il y a 5 ans epidemie_coronavirus @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 3 ans lennard-jones @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 9 ans ph_acides_bases_2013 @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 10 ans polynomes-4 @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 7 ans polynomes-8 @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 7 ans config_debian_i386_convertir_portable_32bits_en_serveur @floss 4 Occurrences trouvées, Dernière modification : il y a 4 ans dokuwiki_extensions @floss 4 Occurrences trouvées, Dernière modification : il y a 5 mois h5p @floss 4 Occurrences trouvées, Dernière modification : il y a 10 mois rotation_vibration_molecules_biatomiques @teaching:exos 4 Occurrences trouvées, Dernière modification : il y a 19 mois sequences_brins_adn @teaching:exos 4 Occurrences trouvées, Dernière modification : il y a 5 ans elements_molecules @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 3 ans factorielle-3 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 7 ans polynomes-5 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 7 ans polynomes-bonus @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 21 mois solvents_data_class @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 11 ans suite_de_fibonacci-4 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 7 ans tableau_periodique_2013 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 4 ans tris @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 12 mois bootstrapwrapper @floss 3 Occurrences trouvées, Dernière modification : il y a 3 ans config_ubuntu_server @floss 3 Occurrences trouvées, Dernière modification : il y a 3 mois config_ubuntu_server-20.04 @floss 3 Occurrences trouvées, Dernière modification : il y a 3 mois moodle @floss 3 Occurrences trouvées, Dernière modification : il y a 23 mois ssh @floss 3 Occurrences trouvées, Dernière modification : il y a 8 mois tesseract @floss 3 Occurrences trouvées, Dernière modification : il y a 8 mois initinfo @teaching 3 Occurrences trouvées, Dernière modification : il y a 8 semaines dokuwiki @wiki 3 Occurrences trouvées, Dernière modification : il y a 3 ans dictionaries_adn_arn_protein @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 8 ans grille_configurations_melange_binaire_2013 @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 10 ans matrices @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 6 ans openbabel_jmol @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 21 mois scikit_learn @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 6 ans tableau_periodique_2011 @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 3 ans trucs_astuces @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 7 mois pka_pkb_plane @teaching:progappchim:matplotlib_gallery 3 Occurrences trouvées, Dernière modification : il y a 4 ans numerical 2 Occurrences trouvées, Dernière modification : il y a 12 ans borgbackup @floss 2 Occurrences trouvées, Dernière modification : il y a 3 ans config_ubuntu @floss 2 Occurrences trouvées, Dernière modification : il y a 7 ans dokuwiki @floss 2 Occurrences trouvées, Dernière modification : il y a 6 mois gourmand @floss 2 Occurrences trouvées, Dernière modification : il y a 2 mois hp_proliant-2021 @floss 2 Occurrences trouvées, Dernière modification : il y a 22 mois obs_studio @floss 2 Occurrences trouvées, Dernière modification : il y a 12 mois server_lamp_install @floss 2 Occurrences trouvées, Dernière modification : il y a 17 mois ssl @floss 2 Occurrences trouvées, Dernière modification : il y a 9 mois biblio-10.1021-acs.jchemed.5b00729 @teaching 2 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-acs.jchemed.6b00261 @teaching 2 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-ed074p262_10.1039-b801297k @teaching 2 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1039-c0rp90006k @teaching 2 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1039_c0rp90007a @teaching 2 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1207-s15516709cog0502_2 @teaching 2 Occurrences trouvées, Dernière modification : il y a 3 ans biblio-didactique-chimie @teaching 2 Occurrences trouvées, Dernière modification : il y a 10 mois cuisine_moleculaire @teaching 2 Occurrences trouvées, Dernière modification : il y a 10 mois exos_energie_d_ionisation @teaching 2 Occurrences trouvées, Dernière modification : il y a 4 ans mercure @teaching 2 Occurrences trouvées, Dernière modification : il y a 23 mois protoxyde_azote @teaching 2 Occurrences trouvées, Dernière modification : il y a 19 mois revision_cheat_sheets @teaching 2 Occurrences trouvées, Dernière modification : il y a 3 ans rappels-proba-stat @teaching:exos 2 Occurrences trouvées, Dernière modification : il y a 11 mois thermodynamique_statistique-exercices @teaching:exos 2 Occurrences trouvées, Dernière modification : il y a 14 mois numerical_integration @teaching:methcalchim 2 Occurrences trouvées, Dernière modification : il y a 5 ans analyse_images @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 3 ans collection_counter_exemple @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 3 ans conversion_temperature_2011 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 10 ans csv @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 3 ans fizz_buzz @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 7 ans glossaire_chimie @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 5 ans jupyter @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 18 mois koch_snowflake @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 7 ans math_nombres @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans osm_interrogation @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 9 ans ph-3d @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 3 ans plot_sinus_cosinus @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 3 ans polynomes-6 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 7 ans polynomes-9 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 7 ans scipy_simple @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 5 ans potentiel_morse @teaching:progappchim:matplotlib_gallery 2 Occurrences trouvées, Dernière modification : il y a 4 ans mapathon2018 1 Occurrences trouvées, Dernière modification : il y a 5 ans anaconda @floss 1 Occurrences trouvées, Dernière modification : il y a 6 mois config_raspbian_rpi2 @floss 1 Occurrences trouvées, Dernière modification : il y a 8 ans config_raspbian_rpi3 @floss 1 Occurrences trouvées, Dernière modification : il y a 7 ans config_ubuntu_mate_rpi2 @floss 1 Occurrences trouvées, Dernière modification : il y a 4 ans config_ubuntu_server-16.04 @floss 1 Occurrences trouvées, Dernière modification : il y a 3 ans config_ubuntu_server-18.04 @floss 1 Occurrences trouvées, Dernière modification : il y a 3 ans convert_monochrome_pdf @floss 1 Occurrences trouvées, Dernière modification : il y a 2 ans java @floss 1 Occurrences trouvées, Dernière modification : il y a 6 ans linux_humour @floss 1 Occurrences trouvées, Dernière modification : il y a 8 mois linux_suicide @floss 1 Occurrences trouvées, Dernière modification : il y a 11 ans lpic-1 @floss 1 Occurrences trouvées, Dernière modification : il y a 6 ans onedrive @floss 1 Occurrences trouvées, Dernière modification : il y a 14 mois radicale @floss 1 Occurrences trouvées, Dernière modification : il y a 2 ans webcams @floss 1 Occurrences trouvées, Dernière modification : il y a 3 ans win @floss 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-acs.jchemed.0c00099 @teaching 1 Occurrences trouvées, Dernière modification : il y a 10 mois biblio-10.1021-acs.jchemed.0c00185 @teaching 1 Occurrences trouvées, Dernière modification : il y a 10 mois biblio-10.1021-acs.jchemed.0c00361 @teaching 1 Occurrences trouvées, Dernière modification : il y a 3 ans biblio-10.1021-acs.jchemed.0c00952 @teaching 1 Occurrences trouvées, Dernière modification : il y a 10 mois biblio-10.1021-acs.jchemed.5b00635 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-acs.jchemed.6b00361 @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-acs.jchemed.6b00400 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-acs.jchemed.6b00624 @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-acs.jchemed.6b00676 @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-acs.jchemed.6b00776 @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-acs.jchemed.6b01024 @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-acs.jchemed.7b00226 @teaching 1 Occurrences trouvées, Dernière modification : il y a 4 ans biblio-10.1021-acs.jchemed.7b00849 @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-ed083p1182 @teaching 1 Occurrences trouvées, Dernière modification : il y a 10 ans biblio-10.1021-ed083p1479 @teaching 1 Occurrences trouvées, Dernière modification : il y a 8 ans biblio-10.1021-ed084p1140 @teaching 1 Occurrences trouvées, Dernière modification : il y a 8 ans biblio-10.1021-ed086p1433 @teaching 1 Occurrences trouvées, Dernière modification : il y a 8 ans biblio-10.1021-ed300456y @teaching 1 Occurrences trouvées, Dernière modification : il y a 8 ans biblio-10.1021-ed400128x @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-ed400851m @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-ed400901x @teaching 1 Occurrences trouvées, Dernière modification : il y a 21 mois biblio-10.1021-ed500401d @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-ed500658s @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-ed3002336 @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-ed3004462 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-ed4003578 @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1039-c005464j @teaching 1 Occurrences trouvées, Dernière modification : il y a 8 ans biblio-10.1039-c7rp00135e @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-9780321611956-chap14 @teaching 1 Occurrences trouvées, Dernière modification : il y a 8 ans biblio-9782916032924 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 mois carbone @teaching 1 Occurrences trouvées, Dernière modification : il y a 19 mois hydrogene @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 mois timeline-chimie @teaching 1 Occurrences trouvées, Dernière modification : il y a 3 ans uranium @teaching 1 Occurrences trouvées, Dernière modification : il y a 2 ans videos_chimie_sg @teaching 1 Occurrences trouvées, Dernière modification : il y a 12 mois codes_astuces @floss:python 1 Occurrences trouvées, Dernière modification : il y a 3 ans partial_differential_equation @teaching:methcalchim 1 Occurrences trouvées, Dernière modification : il y a 21 mois root-finding_algorithm @teaching:methcalchim 1 Occurrences trouvées, Dernière modification : il y a 5 ans collection_namedtuple_exemple @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 3 ans dictionary_adn_protein @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 11 ans diffusion_chimique_1d @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 9 ans fit_modele_einstein @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 9 ans maxwell-boltzmann @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 10 ans multilateration @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 4 mois polynomes-2 @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 7 ans polynomes-3 @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 7 ans polynomes-12 @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 12 mois urllib @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 21 mois ir_spectrum_co @teaching:progappchim:matplotlib_gallery 1 Occurrences trouvées, Dernière modification : il y a 9 ans rotateur_biatomique @teaching:progappchim:matplotlib_gallery 1 Occurrences trouvées, Dernière modification : il y a 6 ans