list

Recherche

Voici les résultats de votre recherche.

desinformations @teaching
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
dokuwiki_extensions @floss
12 Occurrences trouvées, Dernière modification :
er) : * [[https://www.dokuwiki.org/plugin:filelist|filelist]] ===== advanced ===== * [[https://www.dokuwiki.org/plugin:advanced]] ===== Bookcreator =... ps://www.dokuwiki.org/plugin:captcha]] ===== catlist ===== * [[teaching:ressourceschimie|Ressources ... iki/plugin/datatables]] * ... ===== Definition list ===== * [[teaching:glossaire-chimie|Glossaire d
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
dokuwiki @floss
7 Occurrences trouvées, Dernière modification :
er (tous les inscrits). ===== ACL (Access Control List) ===== Des restrictions d'accès peuvent être liée... strap3 * [[https://www.dokuwiki.org/plugin:catlist|catlist]] : rend une liste en arborescence de pages d'un namespace * [[http://www.dokuwiki.org/plug... * [[https://www.dokuwiki.org/plugin:definitionlist|Definition List]], par exemple pour un glossaire
syntax @wiki
6 Occurrences trouvées, Dernière modification :
supports ordered and unordered lists. To create a list item, indent your text by two spaces and use a ''... lists or a ''-'' for ordered ones. * This is a list * The second item * You may have different levels * Another item - The same list but ordered - Another item - Just use inden... deeper levels - That's it <code> * This is a list * The second item * You may have different
activestateselection @floss:python
6 Occurrences trouvées, Dernière modification :
s/578771-recursive-multimedia-audio-video-m3u-playlist-gene|Recursive Multimedia (audio, video) M3U Playlist Generator]] * [[http://code.activestate.com/rec... [[http://code.activestate.com/recipes/577935-primelist/|primeList]] * [[http://code.activestate.com/recipes/577930-left-handed-password-generator/|Left-hand
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 ==== *
config_ubuntu_server @floss
5 Occurrences trouvées, Dernière modification :
essantes * [[https://www.rosehosting.com/blog/list-all-installed-packages-with-apt-on-ubuntu/|Apt Get List Installed | List Installed Packages with Apt on Ubuntu]] <note tip>Un serveur peut-être installé de di... /debian focal contrib | sudo tee /etc/apt/sources.list.d/virtualbox.list curl -fSsL https://www.virtual
psychologie_de_l_education @teaching
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
bureau_a_distance @floss
4 Occurrences trouvées, Dernière modification :
config_ubuntu @floss
4 Occurrences trouvées, Dernière modification :
ressourceschimie @teaching
4 Occurrences trouvées, Dernière modification :
teaching_ressources_videos @teaching
4 Occurrences trouvées, Dernière modification :
dokuwiki @wiki
4 Occurrences trouvées, Dernière modification :
bioinformatic @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
solubilite_ph_t @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
config_ubuntu_server-16.04 @floss
3 Occurrences trouvées, Dernière modification :
config_ubuntu_server-18.04 @floss
3 Occurrences trouvées, Dernière modification :
config_ubuntu_server-20.04 @floss
3 Occurrences trouvées, Dernière modification :
hp_proliant-2021 @floss
3 Occurrences trouvées, Dernière modification :
server_lamp_install @floss
3 Occurrences trouvées, Dernière modification :
tesseract @floss
3 Occurrences trouvées, Dernière modification :
wacom @floss
3 Occurrences trouvées, Dernière modification :
elements_molecules @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
representation_molecules_2013 @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
linux @floss
2 Occurrences trouvées, Dernière modification :
mastodon @floss
2 Occurrences trouvées, Dernière modification :
python @floss
2 Occurrences trouvées, Dernière modification :
pip-pypi @floss:python
2 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 :
mapathon
1 Occurrences trouvées, Dernière modification :
mapathon2017
1 Occurrences trouvées, Dernière modification :
mapathon2018
1 Occurrences trouvées, Dernière modification :
mapathon2019
1 Occurrences trouvées, Dernière modification :
config_ubuntu_mate @floss
1 Occurrences trouvées, Dernière modification :
dokuwiki-presentation-jdl-20200220 @floss
1 Occurrences trouvées, Dernière modification :
latex @floss
1 Occurrences trouvées, Dernière modification :
test_doodle4 @floss
1 Occurrences trouvées, Dernière modification :
vote-451217 @floss
1 Occurrences trouvées, Dernière modification :
win @floss
1 Occurrences trouvées, Dernière modification :
5_conceptions_erronees_courantes_sur_l_apprentissage @teaching
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed083p954 @teaching
1 Occurrences trouvées, Dernière modification :
carbone @teaching
1 Occurrences trouvées, Dernière modification :
etudes-aess-tempo @teaching
1 Occurrences trouvées, Dernière modification :
initinfo @teaching
1 Occurrences trouvées, Dernière modification :
the_need_for_a_theory_of_learning @teaching
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 :