I am coding a simple program which converts imperial units into metric units. However, when I use an Entry.get()
command, I need to convert it to an integer and when I try to do that
I get this error:
Traceback (most recent call last):
File "C:/Users/Bill/converter.py", line 18, in <module>
conversion=int(e.get())
ValueError: invalid literal for int() with base 10: ''
I tried running an extremely basic version of what I was doing (which is written below), but that still caused the same error.
import tkinter
root= tkinter.Tk()
e=tkinter.Entry(root)
e.pack()
b=tkinter.Button(root, command= lambda: print(e.get()))
b.pack()
conversion=int(e.get())
conversion= conversion* 1.8 +32
l = tkinter.Label(root, text=conversion)
top.mainloop()
I only recently started coding again, so the answer is probably something really simple that I missed, but thanks for any answers.
Try this code: