Recherche
Voici les résultats de votre recherche.
Résultats plein texte:
- matplotlib_simple
- to make GIFs and math videos with Python - How to create amazing animations in seconds using Celluloid]] B... tp://www.thetechrepo.com/main-articles/465-how-to-create-a-graph-in-python.html]] * Un article intéressa... Matplotlib]] * [[https://medium.com/dunder-data/create-a-bar-chart-race-animation-in-python-with-matplot... r Data with Matplotlib]] - How to use LaTeX font, create zoom effect, outbox legend, continuous error, and
- tkinter_gui_simple
- as( root, width=500, height=400 ) can.pack() can.create_rectangle( 95,100, 100, 355,fill='blue') can.create_rectangle( 300,100, 305, 355,fill='green') can.create_rectangle( 100,350, 300, 355,fill='red') hauteur = 150 couvercle = can.create_rectangle( 100,hauteur-20, 300, hauteur,fill='bla
- grille_configurations_melange_binaire_2013
- for y in range(start, end, cellHeight): c.create_line(start, y, end, y, fill="blue") #Tracer ... for x in range(start, end, cellWidth): c.create_line(x, start, x, end, fill="blue") #Remplir... u milieu de la case (coordonnée (w, h)) c.create_text(x, y, text=str(val)) #Prendre le mo... h.factorial(nb1)*math.factorial(size-nb1))) c.create_text(50, 500, text="Nombre d'états possibles: " +
- ppoo
- lasses]] * [[https://python.plainenglish.io/create-data-classes-in-python-64d6d84ebe7a|Create Data Classes in Python - This library will save you hours of c... /09/2021 * [[https://itnext.io/effortlessly-create-classes-in-python-with-dataclass-19412eada8be|Effortlessly Create Classes in Python with @dataclass]] Jacob Ferus,
- ensemble_mandelbrot_2013
- ite' ) 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,600,fill="blue") print ("Initializ... x(real, img) if mandel2(c): w.create_line(x,600-y,x+1,601-y,fill="black")
- testjs
- ode> <code data-type="sample-code"> # Create a variable a, equal to 5 # Print out a ... </code> <code data-type="solution"> # Create a variable a, equal to 5 a <- 5 ... >Use the assignment operator (<code><-</code>) to create the variable <code>a</code>.</div> </div> </html>
- epidemie_coronavirus
- p-animation-with-python-in-5-minutes-2d6246c32e54|Create COVID-19 Map Animation with Python in 5 Minutes]] (Using Python with Plotly to Create a COVID-19 Map Animation) * [[https://www.stats
- jupyter
- otebooks]] * [[https://towardsdatascience.com/create-a-simple-app-quickly-using-jupyter-notebook-312bdbb9d224|Create a Simple App Quickly Using Jupyter Notebook - A g
- notions_avancees
- s ===== * [[https://medium.com/jacklee26/how-to-create-the-first-python-package-de6464799bc3|How to create the first python package]] ChenChih, Medium, Dec 18,
- plotly_simple
- 2022 * [[https://anmol3015.medium.com/dont-just-create-plots-in-python-go-one-step-beyond-d60197ed6aa7|Don’t Just Create Plots in Python, Go One Step Beyond - Show your v
- plot_sinus_cosinus
- # directive d'importation standard de numpy # Create a figure of size 8x6 inches, 80 dots per inch plt.figure(figsize=(8, 6), dpi=80) # Create a new subplot from a grid of 1x1 plt.subplot(1, 1
- representation_molecules_2013
- Image(file =name+".gif") DisplayImageZone.create_image(100, 100, image=photo) DisplaySmiles.de... e(file ="Molécule.gif") DisplayImageZone2.create_image(100, 100, image=photo) DisplayName.dele
- bokeh_simple
- ython — Pandas + Bokeh]] A single line of code to create an interactive plot from Pandas dataframe to Boke
- codes_presentation
- n1.pack(side=LEFT, padx =5, pady =5) oval1 = can1.create_oval(x1, y1, x1+30, y1+30, width=2, fill='red') b
- ph-3d
- e) Xc, Yc = np.meshgrid(X, Y) Z = Xc+Yc # just to create Z print(type(Xc), Xc.ndim, Xc.shape, Xc.dtype) pr