Skip to content

Instantly share code, notes, and snippets.

@lfalanga
Last active February 13, 2020 04:12
Show Gist options
  • Save lfalanga/87afdd06026ea38a7170c49aefd4caef to your computer and use it in GitHub Desktop.
Save lfalanga/87afdd06026ea38a7170c49aefd4caef to your computer and use it in GitHub Desktop.
from tkinter import *
root = Tk()
e = Entry(root)
e.pack()
e.focus_set()
#########
a = 5
b = "2"
c = a + int(b)
#########
var = IntVar()
e.config(textvariable=var)
var.set(c)
mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment