Python Forum
how to use getter as argument in function
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to use getter as argument in function
#1
Hi,

I am starting to become familiar with using getters and setters but I'm stumped on this example of using a getter within a function. The closest I get when I open the tkinter page is that is says "property located at 0x03B0A1F" but of course I am looking for the integer value.


from tkinter import *

class Settings:
    def __init__(self):
        self._rinse = 16


    @property
    def rinse(self):
        return self._rinse

    @rinse.setter
    def rinse(self, value):
        self._rinse = value


settingsPage = Tk()
settingsPage.geometry("1024x600")


def new_setting(getter_name, row):
    s = Settings()
    value_lbl = Label(text=s.getter_name, master=settingsPage)   #error here, with getter_name.
    value_lbl.grid(row=row, column=0)


new_setting(rinse, 1)   # error here, does not recognize "rinse"

settingsPage.mainloop()
Reply


Messages In This Thread
how to use getter as argument in function - by nanok66 - May-13-2020, 01:08 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  question about using setter, getter and _ akbarza 4 687 Dec-28-2023, 09:43 PM
Last Post: deanhystad
  mutable argument in function definition akbarza 1 483 Dec-15-2023, 02:00 PM
Last Post: deanhystad
Information How to take url in telegram bot user input and put it as an argument in a function? askfriends 0 1,095 Dec-25-2022, 03:00 PM
Last Post: askfriends
  i want to use type= as a function/method keyword argument Skaperen 9 1,863 Nov-06-2022, 04:28 AM
Last Post: Skaperen
  Regex - Pass Flags as a function argument? muzikman 6 3,608 Sep-06-2021, 03:43 PM
Last Post: muzikman
  How to use a tuple as an argument of a function zarox 5 3,623 Nov-14-2020, 08:02 PM
Last Post: buran
  calling a function and argument in an input phillup7 3 2,618 Oct-25-2020, 02:12 PM
Last Post: jefsummers
  Passing argument from top-level function to embedded function JaneTan 2 2,268 Oct-15-2020, 03:50 PM
Last Post: deanhystad
  return string from function with one argument jamie_01 2 2,199 May-28-2020, 11:07 PM
Last Post: menator01
  Getter/Setter : get parent attribute, but no Getter/Setter in parent nboweb 2 2,989 May-11-2020, 07:22 PM
Last Post: nboweb

Forum Jump:

User Panel Messages

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