Answers for "create input tkinter python"

1

how to add input box in tkinter

from tkinter import *

window = Tk()
# entry box
my_input = Entry()
my_input.pack()

window.mainloop()
Posted by: Guest on February-01-2021

Browse Popular Code Answers by Language