0
Tkinter entry as float?
Hi, im making basic GUI with Python on my Rpi, but i have problem. I need my tkinter entry field to output as float, its allways string. Thanks in advance :)
4 Answers
+ 5
The float() function converts strings and integers into floats. Here are a couple examples: https://code.sololearn.com/cDXTO50z1jU4/?ref=app It should do what you need
+ 5
Can you provide the string youâre using? As long as itâs a number, and not text, it shouldnât be an issue
+ 2
Thanks, for sure i tried this, but output allways throw error "Cant convert string to float"...
0
I got it now, thanks much for your help :)