Created
February 2, 2020 15:12
-
-
Save lfalanga/c2615d8313157d005d646ba27770629f 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, width=36) | |
e.pack() | |
e.focus_set() | |
######### | |
lista = ["bananas", "manzanas"] | |
a = "Hoy compré %s y %s." % (lista[0], lista[1]) | |
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