bonjour

Recherche

Voici les résultats de votre recherche.

tkinter_gui_simple
6 Occurrences trouvées, Dernière modification :
! </note> ===== Une étiquette (Label) affichant "Bonjour !" ===== <code python tk-00.py> #!/usr/bin/env py... tkinter import * root = Tk() w=Label(root, text="Bonjour !") w.pack() root.mainloop() </code> ===== Un b... s, we can !") root = Tk() #w = Label(root, text="Bonjour!") #w.pack() b = Button(root,text="Click here !"... s, we can !") root = Tk() #w = Label(root, text="Bonjour!") #w.grid(row=?) champ = Entry(root) champ.grid
presentation_principes
3 Occurrences trouvées, Dernière modification :
==== Les chaînes de caractères ==== <code> >>> a=’bonjour’ >>> b="bonjour" >>> c=’Bonjour’ >>> print(a==b,a==c) True False >>> d="pâté123#" >>> print d pâté123# >>> é=d >>> long=""