Python Forum
Why is the program not running? Is there a logical or syntax problem?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why is the program not running? Is there a logical or syntax problem?
#1
Hello, I am an amateur programmer.
I wanted to know if my codes are correct?
And why is it not implemented?
Meanwhile, I wrote this program in the object-oriented method and in the tkinter framework.
thank you.

-------------------------------------------------------------------------------------------------------------------------------------------------------------------
import tkinter as tk

class Profit:
    def __init__(self, master):
        self.master = master
        master.title("Profit")
        # create the  pro field
        self.pro_label = tk.Label(master, text= "Interest rate:")
        self.pro_label.grid(row=0, column=0)
        # create the display
        self.display = tk.Entry(master, width=10, justify="center", font=("Arial", 10))
        self.display.grid(row=0, column=1)
        # create the  result field
        self.res_label = tk.Label(master, text="Result:")
        self.res_label.grid(row=1, column=0)
        # create and place the buttons on the grid
        self.calculate_button = tk.Button(master,text="Computing",command=self.calculate)
        self.calculate_button.grid(row=2, column=0)
      def rule(master):
      return 72/master

    def calculate(self):
                x = int(self.display.get())
                result = "Result:   " + self.rule()
                self.res_label.config(text=result)
# create the main window and profit object
 root = tk.Tk()
 pro = Profit(root)
 root.mainloop()
Gribouillis write Mar-31-2023, 09:04 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Reply


Messages In This Thread
Why is the program not running? Is there a logical or syntax problem? - by behi00 - Mar-31-2023, 08:52 PM
not run yet? - by behi00 - Mar-31-2023, 10:16 PM
RE: PROGRAM MAP - by behi00 - Mar-31-2023, 10:29 PM
RE: PROGRAM MAP - by behi00 - Mar-31-2023, 10:59 PM
RE: PROGRAM MAP - by behi00 - Mar-31-2023, 11:23 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] logical error - saving file rwahdan 4 2,160 Jul-01-2021, 12:59 PM
Last Post: rwahdan
  Running cli program within a wx window? t4keheart 2 2,780 Jan-23-2020, 04:50 PM
Last Post: buran
  tkinter GUI, problem running seperate files fishglue 17 6,475 Oct-15-2019, 02:56 PM
Last Post: Denni
  Interacting with python console while program is running Murmele 2 3,369 Feb-10-2018, 05:43 PM
Last Post: kmcollins

Forum Jump:

User Panel Messages

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