You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
198 B
11 lines
198 B
import tkinter as tk
|
|
from random import randint
|
|
|
|
fenetre = tk.Tk()
|
|
value = tk.StringVar()
|
|
value.set("")
|
|
entree = tk.Entry(fenetre,textvariable = value, width = 30)
|
|
entree.grid()
|
|
|
|
|
|
fenetre.mainloop()
|