Recherche
Voici les résultats de votre recherche.
Pages trouvées :
Résultats plein texte:
- calcul_matriciel_2012
- 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
- 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>
- bioinformatic
- 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
- ,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
- 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
- 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
- game_of_life_conway-2012
- might be rude... self.cells = [] for a in range(0,self.sizex): rowcells = [] for b in range(0,self.sizey): c = Cel... . """ cells = self.cells for x in range(0,self.sizex): if x==0: x_... x_up = 0 else: x_up = x+1 for y in range(0,self.sizey): if y==0
- plotly_simple
- tly]] * [[https://towardsdatascience.com/python-for-data-science-a-guide-to-data-visualization-with-plotly-969a59997d0c|Python For Data Science — A Guide to Data Visualization with... * [[https://medium.com/swlh/dashboards-in-python-for-beginners-and-everyone-else-using-dash-f0a045a866... s://towardsdatascience.com/interactive-dashboards-for-data-science-51aa038279e5|Interactive Dashboards
- presentation_principes
- ) </code> ==== Structures de répétition while et for ==== === While === * Commence par **while expr... ter prématurément la structure de répétition === for === * Commence par for element in sequence : * Le bloc d’instructions qui suit est exécuté autant ... la structure de répétition === Exemples while et for === <code python> print('Structure while !') c=0
- notions_avancees
- /theanup.medium.com/10-powerful-python-one-liners-for-daily-use-8733dac0bc2c|15 Powerful Python One-Liners for Daily Use]] Anup Das, Medium, 22/11/2022 ==== On... File System Operations In Python - The essential for Python in tasks automation apps]] Christopher Tao... /06/regular-expression-python/|Beginners Tutorial for Regular Expressions in Python]] * [[https://med
- suite_de_fibonacci-3
- return a elif n == 1: return b for i in range(1,n): a, b = b, a + b retu... print('Premiers éléments de la suite : ') for j in range(10): print(j,fibonacci_item(j)... return a elif n == 1: return b for i in range(1,n): a, b = b, a + b retu... 0, 1, [0,1] if n == 0: return [0] for i in range(1,n): a, b = b, a + b
- algos_entiers
- [http://stackoverflow.com/questions/11175131/code-for-greatest-common-divisor-in-python]] * [[https:/... érieurs à un entier donné """ def isprime(n): for x in range(2,int(n**0.5)+1): if n % x == ... return True def primelist(n): return [a for a in range(2,n) if isprime(a)] p=primelist(1000)... not li[ncur]: ncur += 1 return [a for a in li if a != 0] # renvoie une liste avec les
- mendeleev
- x, y = 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.s... ne liste d'éléments, par exemple les 18 premiers for atnum in range(1, 19): print(element(atnum).a... om mendeleev import element print(list(range(6))) for ele in element([1, 2, 3, 4, 5, 6]): print(ele
- solubilite_ph_t
- #initialise la liste avec tout les précipités for row in reader: #pour toutes les colonnes ... initialise la liste avec un précipité particulier for precipite in precipites: #pour chaque précipité d... liste vide pour la liste des points des abscisses for pH in range (0,140,1): # va passer successivement... sé par 10 pour obtenir les bonnes valeurs de pH) for T in Tlist: #pour chaque Température dans la li
- ensemble_mandelbrot_2013
- dom import randrange def mandel2(c): z=0 for h in range(0,50): #nombre d'iteration ... break #arrête l'execution du for si la condition est remplie if abs(z) >= 2: ... h=600, height=600, background='white' ) w.pack() for hx in range(0,600,50): w.create_line(0,hx,600,hx,fill="blue") for hy in range(0,600,50): w.create_line(hy,0,hy,