Created
February 2, 2020 15:10
-
-
Save lfalanga/5e4a9ff938d03ee83a76b722890cc0a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tkinter import * | |
root = Tk() | |
e = Entry(root) | |
e.pack() | |
e.focus_set() | |
######### | |
frutas = ["banana", "manzana", "pera", "limon", "frutilla", "kiwi", "pomelo"] | |
a = frutas[2] | |
var = IntVar() | |
######### | |
e.config(textvariable=var) | |
var.set(a) | |
mainloop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment