Python Forum
[Tkinter] Tkinter adding entry values
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Tkinter adding entry values
#1
I know this may be a stupid post but I don't know what I'm missing. I'm trying to add two entry box values and put the result in another entry box. But instead of actually adding the values, it just adds the values side by side into the new entry box. What am I missing. Below is part of the code for this and I have attached a pic of the output screen. The entry box 'Rate' and the entry box 'tax' should add together and put the result in the 'daily amount' entry box.

# Insert daily amount
                j = ratee.get()
                f = taxe.get()
                dailyamount=j + f
                dailye.insert(0, dailyamount)

Attached Files

Thumbnail(s)
   
Reply
#2
Entry's return string values, you must convert the strings into numbers to add them together, try using float to convert the values.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Centering and adding a push button to a grid window, TKinter Edward_ 15 5,699 May-25-2023, 07:37 PM
Last Post: deanhystad
  [Tkinter] Making entry global in tkinter with multiprocessing luckyingermany 2 2,409 Jan-21-2022, 03:46 PM
Last Post: deanhystad
  Tkinter Exit Code based on Entry Widget Nu2Python 6 3,212 Oct-21-2021, 03:01 PM
Last Post: Nu2Python
  [Tkinter] Update variable using tkinter entry methon drSlump 6 5,426 Oct-15-2021, 08:01 AM
Last Post: drSlump
  Tkinter | entry output. Sap2ch 1 2,069 Sep-25-2021, 12:38 AM
Last Post: Yoriz
  .get() from generated Entry widgets in tkinter snakes 4 4,418 May-03-2021, 11:26 PM
Last Post: snakes
  Entry Validation in tkinter shahulvk 4 16,901 Oct-28-2020, 10:12 PM
Last Post: joe_momma
  Adding an image to a tkinter window djwilson0495 2 8,254 Aug-23-2020, 11:07 AM
Last Post: ebolisa
  [Tkinter] Tkinter delete values in Entries, when I'm changing the Frame robertoCarlos 11 6,122 Jul-29-2020, 07:13 PM
Last Post: deanhystad
  [Tkinter] Getting Input from Tkinter Entry juliabrushett 6 21,630 May-30-2020, 03:29 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020