Skip to content

Instantly share code, notes, and snippets.

@lfalanga
Created February 2, 2020 15:12
Show Gist options
  • Save lfalanga/c2615d8313157d005d646ba27770629f to your computer and use it in GitHub Desktop.
Save lfalanga/c2615d8313157d005d646ba27770629f to your computer and use it in GitHub Desktop.
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