list

Recherche

Voici les résultats de votre recherche.

desinformations
34 Occurrences trouvées, Dernière modification :
* [[wp>fr:Biais_cognitif|Biais cognitifs]], [[wp>List_of_cognitive_biases|liste]] * [[wp>fr:Biais_d... quise-fait-monter-le-niveau-des-oceans?sectionPlaylist=&program=data-science-vs-fake|Episode 1 : La fon... miere-cause-de-mortalite-dans-le-monde?sectionPlaylist=&program=data-science-vs-fake|Episode 2 : Le canc... ir-la-muraille-de-chine-depuis-la-lune?sectionPlaylist=&program=data-science-vs-fake|Episode 3 : On peut
solvents_data_class @teaching:progappchim
32 Occurrences trouvées, Dernière modification :
- coding: utf-8 -*- # a solvent database using a list of class instances # a modification of: http://ww... fo = fo # chemical formula def table(solvent_list): """print a table of all solvent attributes"... "H2O Sol.", "Formula") for solvent in solvent_list: print data_str % (solvent.name, solvent.... 00 --> miscible" print def table_bp(solvent_list, bp_limit): """print a table of all solvent a
simulations_random_walks_codes @teaching:exos
19 Occurrences trouvées, Dernière modification :
# choice : random choice of an element from a list print(choice(facepiece), choice(valeurpiece))... me function, using choice and range to create the list # seed(ANY_DATA) : seeding of the random nu... rval.append(randint(0,99)) # append to the list a random (integer) number between 0 and 99 # print rval # uncomment just to see the list of random numbers # analysis - histogram - see
notions_fondamentales @teaching:progappchim
15 Occurrences trouvées, Dernière modification :
.split(‘,’) # splits the string by ‘,’; returns a list s.split(‘::’) # splits the string by ‘::’; returns a list s.split(‘ ‘) # splits the string by ‘ ‘; returns a list s.zfill(width) # adds width — len(s) zeros on the... hen zeros are added after it s.join(l) # joins a list or string l with substring s </code> === Applica
ph_acides_bases_2013 @teaching:progappchim
13 Occurrences trouvées, Dernière modification :
.txt fout = open("chem_data_acide.txt", "r") chem_list = fout.readlines() fout.close() #rtstrip pour recopier les éléments de chem_list c2=[chem for chem in chem_list] chem_list = [chem.rstrip() for chem in chem_list] print chem_list print c2 #crée la fenêtre Tk root =
suite_de_fibonacci-3 @teaching:progappchim
13 Occurrences trouvées, Dernière modification :
les fonctionnalités par une fonction **fibonacci_list(n)** qui génère et renvoie la liste des éléments ... ons appelant d'autres fonctions, avec **fibonacci_list_from_items(n)** qui construirait la liste à parti... un élément particulier, et **fibonacci_item_from_list(n)** qui renverrait l'élément d'indice n comme de... a, b = b, a + b return b def fibonacci_list(n): """ Renvoie la liste des éléments de
notions_avancees @teaching:progappchim
10 Occurrences trouvées, Dernière modification :
]] * [[http://www.pythonforbeginners.com/basics/list-comprehensions-in-python]] * [[http://fgallaire... p() et filter() * [[http://www.python-course.eu/list_comprehension.php]], yc suppression de lambda er ... tps://www.datacamp.com/community/tutorials/python-list-comprehension]] * [[https://gist.github.com/bea... ://medium.com/code-85/a-beginners-guide-to-python-list-comprehensions-7dbb0039f065|A Beginner’s Guide to
algos_entiers @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
return False return True def primelist(n): return [a for a in range(2,n) if isprime(a)] p=primelist(1000) print(p) </code> L'algorithme peut être re... ctement inférieurs à un entier donné """ def primelist(n): """ Version avec crible d'Eratosthene... oie une liste avec les élements non nuls p=primelist(1000) print(p) </code> ==== Références ==== *
psychologie_de_l_education
5 Occurrences trouvées, Dernière modification :
tionnement opérant]] * Autres listes * [[wp>List_of_important_publications_in_psychology|List of important publications in psychology]], page très incom... e of ? What follows is a cleaned-up, alphabetical list of what I received, each with an abstract or shor... incarnation, the machine was a box that housed a list of questions that could be viewed one at a time t
suite_de_fibonacci-5 @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
fibonacci06_fonctions import fibonacci_item_from_list from fibonacci07_fonction_recursive import fibona... _item_recursive(i)) print(fibonacci_item_from_list(i)) print(fibonacci_item(i)) print(fibona... sive") t2 = timeit.Timer("fibonacci_item_from_list(" + str(i) + ")","from fibonacci06_fonctions import fibonacci_item_from_list") t3 = timeit.Timer("fibonacci_item(" + str(i
ressourceschimie
4 Occurrences trouvées, Dernière modification :
e-Learning-During-the-COVID19-Pandemic-A-Resource-List-by-the-World-Banks-Edtech-Team|Remote Learning, D... Learning During the COVID19 Pandemic : A Resource List by the World Bank’s Edtech Team (English) | The W... e-Learning-During-the-COVID19-Pandemic-A-Resource-List-by-the-World-Banks-Edtech-Team.pdf|World Bank Doc... e-Learning-During-the-COVID19-Pandemic-A-Resource-List-by-the-World-Banks-Edtech-Team.pdf]] * [[http
teaching_ressources_videos
4 Occurrences trouvées, Dernière modification :
ne Cormier]]) * [[https://www.youtube.com/playlist?list=PLUCh1fWUkXFMBP5mUD9kKzVFhDgzlrHn0|Conférence de Jean-François Van de Poël sur la création de caps... om/repos/ms-teams stable main" > /etc/apt/sources.list.d/teams.list' sudo apt update sudo apt install teams </code> * uninstall (Ubuntu Linux) : [[https://a
bioinformatic @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
nt(' '.join(out)) # utilisation de la technique "list comprehension" count = [adn.count(c) for c in 'AC... r val in count: print(val,) print() # autre "list comprehension", avec impression formatée → versio... GA":"G", "GGG":"G",} aminoacids = ''.join(sorted(list(set([v for k,v in dic.items() if v != "STOP"]))))... ASTA_format]] * [[https://en.wikipedia.org/wiki/List_of_open-source_bioinformatics_software]] * cour
solubilite_ph_t @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
mettant de à la boucle ci dessous de s'appliquer Tlist = [] #initialise une liste avec les différentes t... pératures while z == 1: #boucle de commande Tlist.append(float(input ("A quelle température voulez-... pour obtenir les bonnes valeurs de pH) for T in Tlist: #pour chaque Température dans la liste Tlist Kst = Ks * np.exp((G/R)*((1/T)-(1/Ti))) #Relation
elements_molecules @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
ds and doc strings. Takes module, class, list, dictionary, or string.""" methodList = [method for method in dir(object) if callable(getattr(objec... doc__))) for method in methodList])) f = Formula('CHCl3') #f = Formula('C2H2Cl6'
representation_molecules_2013 @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
matplotlib_simple @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
mendeleev @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
numpy_simple @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
pandas @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
tableau_periodique_2011 @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
potentiel_energy_surface @teaching:progappchim:matplotlib_gallery
2 Occurrences trouvées, Dernière modification :
5_conceptions_erronees_courantes_sur_l_apprentissage
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed083p954
1 Occurrences trouvées, Dernière modification :
carbone
1 Occurrences trouvées, Dernière modification :
etudes-aess-tempo
1 Occurrences trouvées, Dernière modification :
initinfo
1 Occurrences trouvées, Dernière modification :
the_need_for_a_theory_of_learning
1 Occurrences trouvées, Dernière modification :
matrices @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
trucs_astuces @teaching:progappchim
1 Occurrences trouvées, Dernière modification :