start

Recherche

Voici les résultats de votre recherche.

notions_fondamentales
97 Occurrences trouvées, Dernière modification :
//towardsdatascience.com/python-if-else-statement-in-one-line-ternary-operator-explained-eca2be64b7cc|Python If-Else Statement in One Line — Ternary Operator Explained - Single-line conditionals in Python? Here’s when to and when NOT to use them]]... uence "chaîne de caractères". <code python> for i in range(11): print(i, i**2, i**3) </code> //Cf
calcul_matriciel_2012
66 Occurrences trouvées, Dernière modification :
n=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): Rep.app... la transposée de la matrice""" s=[] for i in range(len(n[0])): #correspond à la dimension de l
matplotlib_simple
47 Occurrences trouvées, Dernière modification :
,3.,5.,7.,11.,13.,17.,19.] serie_y1 = [x**2 for x in serie_x] # ces lignes utilisent la technique ... "liste en compréhension" serie_y2 = [x**1.5 for x in serie_x] # pour définir efficacement une liste ... ., 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(-5,
notions_avancees
34 Occurrences trouvées, Dernière modification :
/techtofreedom/7-levels-of-using-the-zip-function-in-python-a4bd22ee8bcd|7 Levels of Using the Zip Function in Python]] * itertools.cycle() est une méthode ut... aba.com/combinatorial-generation-using-coroutines-in-python.html]] * [[http://code.activestate.com/r... [https://levelup.gitconnected.com/return-vs-yield-in-python-a-short-comic-f714465a0e92|Return VS Yield
pandas
30 Occurrences trouvées, Dernière modification :
s-cheat-sheet|Pandas Cheat Sheet for Data Science in Python]] ===== Applications, exemples ===== ===... v11n2/datasets.heinz.html|Exploring Relationships in Body Dimensions]]. Extensions : * Tester et ut... e spaces names = [name.replace(' ', '_') for name in names] print(names) namesfr = [ 'Largeur des... s://medium.com/analytics-vidhya/linear-regression-in-python-from-scratch-with-scipy-statsmodels-sklear
epidemie_coronavirus
27 Occurrences trouvées, Dernière modification :
ttps://en.wikipedia.org/wiki/Compartmental_models_in_epidemiology#The_SEIR_model|SEIR model]] * [[ht... n of the number of Coronavirus Disease 2019 cases in Wuhan, China]] → paramètres pour le COVID-19 * ... ta.org/getting-data-about-coronavirus-with-python-in-italy/?doing_wp_cron=1582794641.9605190753936767578125|Getting data about Coronavirus with Python in Italy]] Posted by pythonprogramming on 26/02/2020
bioinformatic
18 Occurrences trouvées, Dernière modification :
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))) print('... "list comprehension" count = [adn.count(c) for c in 'ACGT'] for val in count: print(val,) print()
game_of_life_conway-2012
17 Occurrences trouvées, Dernière modification :
d nearest and next-nearest neighbours (calculated in Grid::step). A living cell dies of overcrowding o... fe if it has exactly three neighbours (determined in Cell::setNextState). Iain Haslam, June 2005. ... be rude... self.cells = [] for a in range(0,self.sizex): rowcells = [] for b in range(0,self.sizey): c = Cell(par
polynomes-10
17 Occurrences trouvées, Dernière modification :
t n = len(b) -1 #ordre du polynôme for i in range (n+1): b[i] = b[i] * i #on redéfin... liste dont le premier terme vaut 0. for coef in range(len(a)): #Pour tout les coefficients de ... ordre du polynôme avant intégration +1 for i in range (n): # on balaie sur toutes les puissances... while(len(c)<p+1): c.append(0) for k in range(p+1): # pour toutes les puissanc
ppoo
17 Occurrences trouvées, Dernière modification :
""" Introduction to object-oriented programming in Python Led with number and status attributes """... science.com/how-i-explain-oop-to-a-data-scientist-in-5-minutes-44faf72ecca7|How I Explain OOP to a Data Scientist in 5 Minutes]] * [[https://levelup.gitconnected.... owardsdatascience.com/object-oriented-programming-in-python-what-and-why-d966e9e0fd03|Object Oriented
plotly_simple
12 Occurrences trouvées, Dernière modification :
thon-notebook-tutorial/|Jupyter Notebook Tutorial in Python]] * [[https://plot.ly/ipython-notebooks/... ascience.com/the-next-level-of-data-visualization-in-python-dd6e99039d5e|The Next Level of Data Visualization in Python]] * [[https://towardsdatascience.com/recreating-gapminder-animation-in-2-lines-of-python-with-plotly-express-2060c73bede
presentation_principes
11 Occurrences trouvées, Dernière modification :
rols=1&show_progress_bar=1&build_all_lists=1&open_in_new_window=1~~ ====== Programmer en Python =====... 1': 8, 'e4': 11, 'e2': 9} >>> d['e4'] 11 >>> 'e7' in d False >>> import operator >>> print(sorted(d.it... étition === for === * Commence par for element in sequence : * Le bloc d’instructions qui suit es... print('Structure for') a=range(11) print(a) for n in a: print(n*7) </code> ==== Indentations des
mendeleev
10 Occurrences trouvées, Dernière modification :
e/notebooks/02_tables.ipynb]] (accessing the data in bulk) * [[https://nbviewer.jupyter.org/github... = range(1,108), [element(i).ionenergies[1] for i in range(1,108)] for i in range(1,108): print(x[i-1], y[i-1]) plt.figure() plt.plot(x, y) plt.savef... 'éléments, par exemple les 18 premiers for atnum in range(1, 19): print(element(atnum).atomic_num
algos_entiers
9 Occurrences trouvées, Dernière modification :
estions/11175131/code-for-greatest-common-divisor-in-python]] * [[https://docs.python.org/dev/librar... s à un entier donné """ def isprime(n): for x in range(2,int(n**0.5)+1): if n % x == 0: ... eturn True def primelist(n): return [a for a in range(2,n) if isprime(a)] p=primelist(1000) prin... [ncur]: ncur += 1 return [a for a in li if a != 0] # renvoie une liste avec les éleme
bokeh_simple
9 Occurrences trouvées, Dernière modification :
20Introduction%20and%20Setup.ipynb|Bokeh tutorial in live Jupyter Notebooks]] * [[https://bokeh.py... owardsdatascience.com/beautiful-and-easy-plotting-in-python-pandas-bokeh-afa92d792167|Beautiful and Easy Plotting in Python — Pandas + Bokeh]] A single line of code t... beautiful-and-interactive-line-charts-using-bokeh-in-python-9f3e11e0a16e|Draw Beautiful and Interactiv
numpy_simple
9 Occurrences trouvées, Dernière modification :
progappchim
9 Occurrences trouvées, Dernière modification :
suite_de_fibonacci-3
9 Occurrences trouvées, Dernière modification :
solubilite_ph_t
8 Occurrences trouvées, Dernière modification :
altair_simple
7 Occurrences trouvées, Dernière modification :
jupyter
7 Occurrences trouvées, Dernière modification :
openbabel_jmol
7 Occurrences trouvées, Dernière modification :
polynomes-7
7 Occurrences trouvées, Dernière modification :
polynomes-11
7 Occurrences trouvées, Dernière modification :
representation_molecules_2013
7 Occurrences trouvées, Dernière modification :
tkinter_gui_simple
7 Occurrences trouvées, Dernière modification :
tris
7 Occurrences trouvées, Dernière modification :
csv
6 Occurrences trouvées, Dernière modification :
elements_molecules
6 Occurrences trouvées, Dernière modification :
pavage_penrose_2013
6 Occurrences trouvées, Dernière modification :
solvents_data_class
6 Occurrences trouvées, Dernière modification :
ensemble_mandelbrot_2013
5 Occurrences trouvées, Dernière modification :
lennard-jones
5 Occurrences trouvées, Dernière modification :
ph_acides_bases_2013
5 Occurrences trouvées, Dernière modification :
polynomes-8
5 Occurrences trouvées, Dernière modification :
polynomes-bonus
4 Occurrences trouvées, Dernière modification :
suite_de_fibonacci-4
4 Occurrences trouvées, Dernière modification :
tableau_periodique_2011
4 Occurrences trouvées, Dernière modification :
tableau_periodique_2013
4 Occurrences trouvées, Dernière modification :
trucs_astuces
4 Occurrences trouvées, Dernière modification :
pka_pkb_plane @teaching:progappchim:matplotlib_gallery
4 Occurrences trouvées, Dernière modification :
dictionaries_adn_arn_protein
3 Occurrences trouvées, Dernière modification :
dictionary_adn_protein
3 Occurrences trouvées, Dernière modification :
grille_configurations_melange_binaire_2013
3 Occurrences trouvées, Dernière modification :
matrices
3 Occurrences trouvées, Dernière modification :
osm_interrogation
3 Occurrences trouvées, Dernière modification :
ph-3d
3 Occurrences trouvées, Dernière modification :
attracteur_lorenz
2 Occurrences trouvées, Dernière modification :
collection_counter_exemple
2 Occurrences trouvées, Dernière modification :
conversion_temperature_2011
2 Occurrences trouvées, Dernière modification :
fit_modele_einstein
2 Occurrences trouvées, Dernière modification :
fizz_buzz
2 Occurrences trouvées, Dernière modification :
glossaire_chimie
2 Occurrences trouvées, Dernière modification :
koch_snowflake
2 Occurrences trouvées, Dernière modification :
math_nombres
2 Occurrences trouvées, Dernière modification :
plot_sinus_cosinus
2 Occurrences trouvées, Dernière modification :
polynomes-4
2 Occurrences trouvées, Dernière modification :
polynomes-5
2 Occurrences trouvées, Dernière modification :
polynomes-6
2 Occurrences trouvées, Dernière modification :
polynomes-9
2 Occurrences trouvées, Dernière modification :
rdkit
2 Occurrences trouvées, Dernière modification :
scikit_learn
2 Occurrences trouvées, Dernière modification :
slices
2 Occurrences trouvées, Dernière modification :
potentiel_energy_surface @teaching:progappchim:matplotlib_gallery
2 Occurrences trouvées, Dernière modification :
potentiel_morse @teaching:progappchim:matplotlib_gallery
2 Occurrences trouvées, Dernière modification :
analyse_images
1 Occurrences trouvées, Dernière modification :
diffusion_chimique_1d
1 Occurrences trouvées, Dernière modification :
factorielle-3
1 Occurrences trouvées, Dernière modification :
multilateration
1 Occurrences trouvées, Dernière modification :
polynomes-2
1 Occurrences trouvées, Dernière modification :
polynomes-3
1 Occurrences trouvées, Dernière modification :
polynomes-12
1 Occurrences trouvées, Dernière modification :
print_format
1 Occurrences trouvées, Dernière modification :
scipy_simple
1 Occurrences trouvées, Dernière modification :
t-test
1 Occurrences trouvées, Dernière modification :
urllib
1 Occurrences trouvées, Dernière modification :
ir_spectrum_co @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
rotateur_biatomique @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
  • start.txt
  • Dernière modification : 2021/09/09 08:56
  • de villersd