Answers for "tkinter convert Entry to string"

0

tkinter convert Entry to string

MyEntry = Entry(bla, bla, bla)
EntryAnswer = Entry.get()
str(EntryAnswer)

#First you have to extract the entry
#Then you make the entry a string
Posted by: Guest on February-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language