Skip to content

Instantly share code, notes, and snippets.

@lfalanga
Created January 30, 2020 00:26
Show Gist options
  • Save lfalanga/a0822ce0a03be25cfef3a43844b6055b to your computer and use it in GitHub Desktop.
Save lfalanga/a0822ce0a03be25cfef3a43844b6055b to your computer and use it in GitHub Desktop.
import random
from tkinter import *
root = Tk()
e = Entry(root)
e.pack()
e.focus_set()
#########
a = 5
b = "2"
c = a + int(b)
d = random.randint(1, 101)
f = c * d
#########
var = IntVar()
e.config(textvariable=var)
var.set(f)
mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment