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.
14 lines
246 B
14 lines
246 B
import tkinter as tk
|
|
from random import randint
|
|
|
|
def conversion(nombre):
|
|
for element in lst
|
|
|
|
fenetre = tk.Tk()
|
|
value = tk.StringVar()
|
|
value.set("")
|
|
entree = tk.Entry(fenetre,textvariable = value, width = 30)
|
|
entree.grid()
|
|
|
|
|
|
fenetre.mainloop()
|