text

Recherche

Voici les résultats de votre recherche.

notions_fondamentales
3 Occurrences trouvées, Dernière modification :
thon.org/3/library/stdtypes.html?highlight=encode#text-sequence-type-str|documentation officielle]] et [... e python> strings = ['A', 'bac', 'cali', 'jkppl'] text = ''.join(strings) print(text) </code> Les caractères Unicode étant considérés comme abstraits dans Py
notions_avancees
2 Occurrences trouvées, Dernière modification :
"mike@mydomain.com" FROM = "python@mydomain.com" text = "blah blah blah" BODY = "\r\n".join(( f"Fro... To: {TO}", f"Subject: {SUBJECT}", "", text) ) server = smtplib.SMTP(HOST) server.sendmail(F
presentation_principes
6 Occurrences trouvées, Dernière modification :
"Lecture de deux masses") chaine1 = Label (fen01, text = "introduisez la première masse :") chaine2 = Label (fen01, text = "introduisez la deuxième masse :") chaine1.grid... ) entr2.grid(row =1, column =1) bou1=Button(fen01,text='Continuer',command=fen01.quit) bou1.grid(row=2,c... 0, y1+30, width=2, fill='red') bou1 = Button(fen1,text='Quitter', width =8, command=fen1.quit) bou1.pack
tkinter_gui_simple
22 Occurrences trouvées, Dernière modification :
from tkinter import * root = Tk() w=Label(root, text="Bonjour !") w.pack() root.mainloop() </code> =... nt("Yes, we can !") root = Tk() #w = Label(root, text="Bonjour!") #w.pack() b = Button(root,text="Click here !",command=action) b.pack() root.mainloop() </... nt("Yes, we can !") root = Tk() #w = Label(root, text="Bonjour!") #w.grid(row=?) champ = Entry(root) c
bokeh_simple
1 Occurrences trouvées, Dernière modification :
h-2-4-6f8a842dfb4f|Bokeh 2.4. Bokeh 2.4 adds math text support, SVG…]] by Bokeh, Sep, Medium FIXME : .
tableau_periodique_2011
11 Occurrences trouvées, Dernière modification :
box.insert(END,item) quitter = Button(element,text='Quitter',command=element.destroy) quitter.pa... s (ici des messages) autre = Message(legend1, text="Autres", width=300, font="Arial 15", bg="white")... tre.pack() metauxtransition= Message(legend1, text="Metaux de transition", width=300, font="Arial 15... xtransition.pack() gazrare = Message(legend1, text="Gaz rares", width=300, font="Arial 15", bg="#00C
ph_courbe_titrage_2011
20 Occurrences trouvées, Dernière modification :
enwarn.title('Erreur') Label(fenwarn, text='Vous devez choisir un type').pack(padx=5, pady=5) Button(fenwarn, text='Fermer', command = fenwarn.destroy,bg="red").pac... nwarn.title('Erreur') Label(fenwarn, text="Veuillez entrer des valeurs cohérentes. Le pH do... .pack(padx=5, pady=5) Button(fenwarn, text='Fermer', command = fenwarn.destroy,bg="red").pac
game_of_life_conway-2012
7 Occurrences trouvées, Dernière modification :
eturn n def multistep(self): text1=KBvar1.get() try: ns=int(text1) except ValueError: ns = 1 text2=KBvar2.get() try: delay=int(text2) except ValueError: delay =
random_walk_2d-simple
2 Occurrences trouvées, Dernière modification :
# le Canvas occupera le dessus bou1=Button(fen1,text='Quitter',command=fen1.quit) bou1.grid(row=1,stic... sera en dessous à gauche (West) bou2=Button(fen1,text='Générer une chaîne',command=simu_chain) bou2.gri
plot_sinus_cosinus
4 Occurrences trouvées, Dernière modification :
* [[http://matplotlib.sourceforge.net/users/index_text.html|Working with text]] * [[http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.xticks|xti... ib.sourceforge.net/api/artist_api.html#matplotlib.text.Text.set_bbox|BBox]] Les textes des graduations sont à présent difficilement lisibles à cause des lign
codes_presentation
6 Occurrences trouvées, Dernière modification :
"Lecture de deux masses") chaine1 = Label (fen01, text = "introduisez la première masse :") chaine2 = Label (fen01, text = "introduisez la deuxième masse :") chaine1.grid... ) entr2.grid(row =1, column =1) bou1=Button(fen01,text='Continuer',command=fen01.quit) bou1.grid(row=2,c... 0, y1+30, width=2, fill='red') bou1 = Button(fen1,text='Quitter', width =8, command=fen1.quit) bou1.pack
tableau_periodique_2013
2 Occurrences trouvées, Dernière modification :
(END,item) quitter = Button(element,text='Quitter',command=element.destroy) quitter.pa... enêtre for item in table[1:]: bou=Button(fen1,text=item[0],command=lambda x=item[4] :elem(x),height=
representation_molecules_2013
31 Occurrences trouvées, Dernière modification :
n ''.join(c for c in s if chk(c)) def find_words(text, search): ''' Sert à vérifier la présence d'u... ''' dText = {} dSearch = {} dText = text.split() dSearch = search.split() lenText... t dSearch, lenSearch found_word = 0 for text_word in dText: for search_word in dSearch: if hash(search_word) == hash(text_word): found_word += 1 if fo
potentiel_morse @teaching:progappchim:matplotlib_gallery
3 Occurrences trouvées, Dernière modification :
owstyle="<->",color='k',shrinkA=0,shrinkB=0)) plt.text(xmax*0.41, D_e*0.3, u"Puit de potentiel", fontsiz... "<->",color='k',shrinkA=0,shrinkB=0)) plt.text(xmax*0.61, D_e*0.6, u"Énergie de dissociation", f... # numérotation des niveaux de vibration plt.text(r2*1.05, E*1.02, "n = "+str(v), fontsize=14)
rotateur_biatomique @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
'+str(round(Zrot,3))+"$" size = 14 x,y = 12,7 plt.text(x, y, eq, fontsize=size, clip_on=True) plt.show(
dictionaries_adn_arn_protein
18 Occurrences trouvées, Dernière modification :
pressions_partielles_systemes_non_ideaux
5 Occurrences trouvées, Dernière modification :
gaz_parfait_2011
33 Occurrences trouvées, Dernière modification :
conversion_temperature_2011
15 Occurrences trouvées, Dernière modification :
calcul_matriciel_2012
31 Occurrences trouvées, Dernière modification :
ph_acides_bases_2013
6 Occurrences trouvées, Dernière modification :
grille_configurations_melange_binaire_2013
8 Occurrences trouvées, Dernière modification :
courbe_predominance_acide_2013
9 Occurrences trouvées, Dernière modification :