Voici les résultats de votre recherche.
articles_didactique_chimie @teaching 250 Occurrences trouvées, Dernière modification : il y a 10 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... /acs.jchemed.3c00413|How Effective are Indicators for Individuals with Color Vision Deficiency? | Journ... in Chemistry and Chemical Education: A Framework for Meaningful Conceptual Learning and Competence in psychologie_de_l_education @teaching 126 Occurrences trouvées, Dernière modification : il y a 10 mois body of literature addressing other uses of tests for educational purposes, including for formative and summative assessment. The research discussed in this special issue has important implications for the science of learning, teaching practices, and ... earch, Theoretical Perspectives, and Implications for Educational Practice | Educational Psychology Rev desinformations @teaching 97 Occurrences trouvées, Dernière modification : il y a 15 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 python @floss 69 Occurrences trouvées, Dernière modification : il y a 8 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 stackexchange-chimie @teaching 69 Occurrences trouvées, Dernière modification : il y a 18 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?]] calcul_matriciel_2012 @teaching:progappchim 66 Occurrences trouvées, Dernière modification : il y a 11 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 19 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>
biblio-10.1007-s10648-021-09646-1 @teaching 27 Occurrences trouvées, Dernière modification : il y a 10 mois /S1747938X23000295|Let’s talk evidence – The case for combining inquiry-based and direct instruction - ... ry-based instruction and reproached policy makers for ignoring this fact. In the current article we rep... based instruction produces better overall results for acquiring conceptual knowledge than does direct instruction. We show that this conclusion holds for controlled, correlational, and program-based stud teaching_ressources_videos @teaching 25 Occurrences trouvées, Dernière modification : il y a 20 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 20 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 11 mois /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 6 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 2 ans 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 17 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 2 ans 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 publis_diverses @teaching 17 Occurrences trouvées, Dernière modification : il y a 11 mois polynomes-10 @teaching:progappchim 17 Occurrences trouvées, Dernière modification : il y a 8 ans 5_conceptions_erronees_courantes_sur_l_apprentissage @teaching 15 Occurrences trouvées, Dernière modification : il y a 2 ans game_of_life_conway-2012 @teaching:progappchim 15 Occurrences trouvées, Dernière modification : il y a 4 ans ressources_educatives_libres @floss 14 Occurrences trouvées, Dernière modification : il y a 12 mois ressourceschimie @teaching 14 Occurrences trouvées, Dernière modification : il y a 3 ans adamboxer-approche_pas_a_pas_des_travaux_pratiques @teaching 13 Occurrences trouvées, Dernière modification : il y a 3 ans the_need_for_a_theory_of_learning @teaching 13 Occurrences trouvées, Dernière modification : il y a 15 mois methcalchim @teaching:methcalchim 13 Occurrences trouvées, Dernière modification : il y a 20 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 mois wacom @floss 12 Occurrences trouvées, Dernière modification : il y a 4 ans poker_menteur @teaching:exos 12 Occurrences trouvées, Dernière modification : il y a 11 ans plotly_simple @teaching:progappchim 12 Occurrences trouvées, Dernière modification : il y a 19 mois activestateselection @floss:python 11 Occurrences trouvées, Dernière modification : il y a 10 ans presentation_principes @teaching:progappchim 11 Occurrences trouvées, Dernière modification : il y a 21 mois notions_avancees @teaching:progappchim 10 Occurrences trouvées, Dernière modification : il y a 19 mois tmp 9 Occurrences trouvées, Dernière modification : il y a 3 ans suite_de_fibonacci-3 @teaching:progappchim 9 Occurrences trouvées, Dernière modification : il y a 8 ans mastodon @floss 8 Occurrences trouvées, Dernière modification : il y a 11 mois articles_didactique_chimie-george_m_bodner @teaching 8 Occurrences trouvées, Dernière modification : il y a 3 ans kirschner-how_teaching_happens @teaching 8 Occurrences trouvées, Dernière modification : il y a 2 ans paradoxe_anniversaires @teaching:exos 8 Occurrences trouvées, Dernière modification : il y a 4 ans algos_entiers @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 23 mois mendeleev @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 2 ans solubilite_ph_t @teaching:progappchim 8 Occurrences trouvées, Dernière modification : il y a 9 ans bash_scripts @floss 7 Occurrences trouvées, Dernière modification : il y a 18 mois ensemble_mandelbrot_2013 @teaching:progappchim 7 Occurrences trouvées, Dernière modification : il y a 10 ans polynomes-7 @teaching:progappchim 7 Occurrences trouvées, Dernière modification : il y a 6 ans polynomes-11 @teaching:progappchim 7 Occurrences trouvées, Dernière modification : il y a 8 ans config_ubuntu_server_rpi1 @floss 6 Occurrences trouvées, Dernière modification : il y a 5 ans latex @floss 6 Occurrences trouvées, Dernière modification : il y a 23 mois unison @floss 6 Occurrences trouvées, Dernière modification : il y a 12 mois biblio-10.1021-acs.chemrev.8b00020 @teaching 6 Occurrences trouvées, Dernière modification : il y a 4 ans kirschner-how_learning_happens @teaching 6 Occurrences trouvées, Dernière modification : il y a 2 ans lancer_pieces @teaching:exos 6 Occurrences trouvées, Dernière modification : il y a 2 ans numpy_simple @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 21 mois pavage_penrose_2013 @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 11 ans representation_molecules_2013 @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 5 ans progappchim @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 21 mois tkinter_gui_simple @teaching:progappchim 6 Occurrences trouvées, Dernière modification : il y a 22 mois config_ubuntu_server-18.04_rpi3 @floss 5 Occurrences trouvées, Dernière modification : il y a 4 ans cairo-tutoriel @floss:python 5 Occurrences trouvées, Dernière modification : il y a 13 ans system_of_linear_equations @teaching:methcalchim 5 Occurrences trouvées, Dernière modification : il y a 6 ans epidemie_coronavirus @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 4 ans lennard-jones @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 10 ans ph_acides_bases_2013 @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 11 ans polynomes-4 @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-8 @teaching:progappchim 5 Occurrences trouvées, Dernière modification : il y a 8 ans config_debian_i386_convertir_portable_32bits_en_serveur @floss 4 Occurrences trouvées, Dernière modification : il y a 5 ans dokuwiki_extensions @floss 4 Occurrences trouvées, Dernière modification : il y a 17 mois h5p @floss 4 Occurrences trouvées, Dernière modification : il y a 22 mois rotation_vibration_molecules_biatomiques @teaching:exos 4 Occurrences trouvées, Dernière modification : il y a 3 ans sequences_brins_adn @teaching:exos 4 Occurrences trouvées, Dernière modification : il y a 6 ans elements_molecules @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 4 ans factorielle-3 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-5 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-bonus @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 3 ans solvents_data_class @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 12 ans suite_de_fibonacci-4 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 8 ans tableau_periodique_2013 @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 5 ans tris @teaching:progappchim 4 Occurrences trouvées, Dernière modification : il y a 24 mois bootstrapwrapper @floss 3 Occurrences trouvées, Dernière modification : il y a 4 ans config_ubuntu_server @floss 3 Occurrences trouvées, Dernière modification : il y a 14 mois config_ubuntu_server-20.04 @floss 3 Occurrences trouvées, Dernière modification : il y a 14 mois moodle @floss 3 Occurrences trouvées, Dernière modification : il y a 3 ans ssh @floss 3 Occurrences trouvées, Dernière modification : il y a 20 mois tesseract @floss 3 Occurrences trouvées, Dernière modification : il y a 20 mois initinfo @teaching 3 Occurrences trouvées, Dernière modification : il y a 10 mois dokuwiki @wiki 3 Occurrences trouvées, Dernière modification : il y a 4 ans dictionaries_adn_arn_protein @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 9 ans grille_configurations_melange_binaire_2013 @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 11 ans matrices @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 7 ans openbabel_jmol @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 3 ans scikit_learn @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 7 ans tableau_periodique_2011 @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 4 ans trucs_astuces @teaching:progappchim 3 Occurrences trouvées, Dernière modification : il y a 19 mois pka_pkb_plane @teaching:progappchim:matplotlib_gallery 3 Occurrences trouvées, Dernière modification : il y a 5 ans numerical 2 Occurrences trouvées, Dernière modification : il y a 13 ans borgbackup @floss 2 Occurrences trouvées, Dernière modification : il y a 4 ans config_ubuntu @floss 2 Occurrences trouvées, Dernière modification : il y a 8 ans dokuwiki @floss 2 Occurrences trouvées, Dernière modification : il y a 18 mois gourmand @floss 2 Occurrences trouvées, Dernière modification : il y a 14 mois hp_proliant-2021 @floss 2 Occurrences trouvées, Dernière modification : il y a 11 mois obs_studio @floss 2 Occurrences trouvées, Dernière modification : il y a 23 mois server_lamp_install @floss 2 Occurrences trouvées, Dernière modification : il y a 2 ans ssl @floss 2 Occurrences trouvées, Dernière modification : il y a 21 mois biblio-10.1021-acs.jchemed.5b00729 @teaching 2 Occurrences trouvées, Dernière modification : il y a 7 ans biblio-10.1021-acs.jchemed.6b00261 @teaching 2 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-ed074p262_10.1039-b801297k @teaching 2 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1039-c0rp90006k @teaching 2 Occurrences trouvées, Dernière modification : il y a 7 ans biblio-10.1039_c0rp90007a @teaching 2 Occurrences trouvées, Dernière modification : il y a 7 ans biblio-10.1207-s15516709cog0502_2 @teaching 2 Occurrences trouvées, Dernière modification : il y a 4 ans biblio-didactique-chimie @teaching 2 Occurrences trouvées, Dernière modification : il y a 22 mois cuisine_moleculaire @teaching 2 Occurrences trouvées, Dernière modification : il y a 22 mois exos_energie_d_ionisation @teaching 2 Occurrences trouvées, Dernière modification : il y a 5 ans mercure @teaching 2 Occurrences trouvées, Dernière modification : il y a 3 ans protoxyde_azote @teaching 2 Occurrences trouvées, Dernière modification : il y a 3 ans revision_cheat_sheets @teaching 2 Occurrences trouvées, Dernière modification : il y a 4 ans rappels-proba-stat @teaching:exos 2 Occurrences trouvées, Dernière modification : il y a 22 mois thermodynamique_statistique-exercices @teaching:exos 2 Occurrences trouvées, Dernière modification : il y a 2 ans numerical_integration @teaching:methcalchim 2 Occurrences trouvées, Dernière modification : il y a 6 ans analyse_images @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans collection_counter_exemple @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans conversion_temperature_2011 @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 11 ans csv @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans fizz_buzz @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 8 ans glossaire_chimie @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 6 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 osm_interrogation @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 10 ans ph-3d @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans plot_sinus_cosinus @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 4 ans polynomes-6 @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 scipy_simple @teaching:progappchim 2 Occurrences trouvées, Dernière modification : il y a 6 ans potentiel_morse @teaching:progappchim:matplotlib_gallery 2 Occurrences trouvées, Dernière modification : il y a 5 ans mapathon2018 1 Occurrences trouvées, Dernière modification : il y a 6 ans anaconda @floss 1 Occurrences trouvées, Dernière modification : il y a 18 mois config_raspbian_rpi2 @floss 1 Occurrences trouvées, Dernière modification : il y a 9 ans config_raspbian_rpi3 @floss 1 Occurrences trouvées, Dernière modification : il y a 8 ans config_ubuntu_mate_rpi2 @floss 1 Occurrences trouvées, Dernière modification : il y a 5 ans config_ubuntu_server-16.04 @floss 1 Occurrences trouvées, Dernière modification : il y a 4 ans config_ubuntu_server-18.04 @floss 1 Occurrences trouvées, Dernière modification : il y a 4 ans convert_monochrome_pdf @floss 1 Occurrences trouvées, Dernière modification : il y a 3 ans java @floss 1 Occurrences trouvées, Dernière modification : il y a 7 ans linux_humour @floss 1 Occurrences trouvées, Dernière modification : il y a 19 mois linux_suicide @floss 1 Occurrences trouvées, Dernière modification : il y a 12 ans lpic-1 @floss 1 Occurrences trouvées, Dernière modification : il y a 7 ans onedrive @floss 1 Occurrences trouvées, Dernière modification : il y a 2 ans pdf-20240316 @floss 1 Occurrences trouvées, Dernière modification : il y a 8 mois radicale @floss 1 Occurrences trouvées, Dernière modification : il y a 3 ans webcams @floss 1 Occurrences trouvées, Dernière modification : il y a 4 ans win @floss 1 Occurrences trouvées, Dernière modification : il y a 7 ans biblio-10.1021-acs.jchemed.0c00099 @teaching 1 Occurrences trouvées, Dernière modification : il y a 22 mois biblio-10.1021-acs.jchemed.0c00185 @teaching 1 Occurrences trouvées, Dernière modification : il y a 22 mois biblio-10.1021-acs.jchemed.0c00361 @teaching 1 Occurrences trouvées, Dernière modification : il y a 4 ans biblio-10.1021-acs.jchemed.0c00952 @teaching 1 Occurrences trouvées, Dernière modification : il y a 22 mois biblio-10.1021-acs.jchemed.5b00635 @teaching 1 Occurrences trouvées, Dernière modification : il y a 7 ans biblio-10.1021-acs.jchemed.6b00361 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-acs.jchemed.6b00400 @teaching 1 Occurrences trouvées, Dernière modification : il y a 7 ans biblio-10.1021-acs.jchemed.6b00624 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-acs.jchemed.6b00676 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-acs.jchemed.6b00776 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-acs.jchemed.6b01024 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-acs.jchemed.7b00226 @teaching 1 Occurrences trouvées, Dernière modification : il y a 5 ans biblio-10.1021-acs.jchemed.7b00849 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-ed083p1182 @teaching 1 Occurrences trouvées, Dernière modification : il y a 11 ans biblio-10.1021-ed083p1479 @teaching 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1021-ed084p1140 @teaching 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1021-ed086p1433 @teaching 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1021-ed300456y @teaching 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1021-ed400128x @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-ed400851m @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-ed400901x @teaching 1 Occurrences trouvées, Dernière modification : il y a 3 ans biblio-10.1021-ed500401d @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-ed500658s @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-ed3002336 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1021-ed3004462 @teaching 1 Occurrences trouvées, Dernière modification : il y a 7 ans biblio-10.1021-ed4003578 @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-10.1039-c005464j @teaching 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-10.1039-c7rp00135e @teaching 1 Occurrences trouvées, Dernière modification : il y a 6 ans biblio-9780321611956-chap14 @teaching 1 Occurrences trouvées, Dernière modification : il y a 9 ans biblio-9782916032924 @teaching 1 Occurrences trouvées, Dernière modification : il y a 18 mois carbone @teaching 1 Occurrences trouvées, Dernière modification : il y a 3 ans hydrogene @teaching 1 Occurrences trouvées, Dernière modification : il y a 18 mois timeline-chimie @teaching 1 Occurrences trouvées, Dernière modification : il y a 4 ans uranium @teaching 1 Occurrences trouvées, Dernière modification : il y a 3 ans videos_chimie_sg @teaching 1 Occurrences trouvées, Dernière modification : il y a 2 ans codes_astuces @floss:python 1 Occurrences trouvées, Dernière modification : il y a 4 ans partial_differential_equation @teaching:methcalchim 1 Occurrences trouvées, Dernière modification : il y a 3 ans root-finding_algorithm @teaching:methcalchim 1 Occurrences trouvées, Dernière modification : il y a 6 ans collection_namedtuple_exemple @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 4 ans dictionary_adn_protein @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 12 ans diffusion_chimique_1d @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 10 ans fit_modele_einstein @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 10 ans maxwell-boltzmann @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 11 ans multilateration @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 16 mois polynomes-2 @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-3 @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 8 ans polynomes-12 @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 24 mois urllib @teaching:progappchim 1 Occurrences trouvées, Dernière modification : il y a 3 ans ir_spectrum_co @teaching:progappchim:matplotlib_gallery 1 Occurrences trouvées, Dernière modification : il y a 10 ans rotateur_biatomique @teaching:progappchim:matplotlib_gallery 1 Occurrences trouvées, Dernière modification : il y a 7 ans