Python Forum
Please explain uncommon way of declaring and using variable [function.variable]
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Please explain uncommon way of declaring and using variable [function.variable]
#1
I came across similar code as bellow. It declare a variable foo.y and foo.z. They can be called outside the function.
I don't see this being explained in any tutorial.

Is this a common practice?
Can anyone please explain or give any lead on manual or info about this, thank you.

def foo(x):
    foo.y = 2
    foo.z = foo.y ** x 
    return x * foo.y

print(f'foo(3) is {foo(3)}')
print(f'foo.y is {foo.y}')
print(f'foo.z is {foo.z}')



Output:
foo(3) is 6 foo.y is 2 foo.z is 8
Reply
#2
These are function attributes and described in PEP 232
esphi likes this post
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply
#3
I knew this could be done (python functions have a __dict__), but I have never seen it done. I also cannot think of how I could use a function attribute and have never seen an example that wasn't contrived. But somebody must have seen a need and offered a compelling argument as to why function attributes were needed.
def sqrt(x):
    sqrt.x = x
    return x**0.5

print(sqrt(4))
sqrt.y = 'Hello'

for a in sqrt.__dict__:
    print(a, sqrt.__dict__[a])
Output:
2.0 x 4 y Hello
esphi likes this post
Reply
#4
Thanks for the replies.
In other words these are function attributes, they do not behave exactly like a variable, and they are not suppose to be used as variable in general?
Reply
#5
I think it's important to say that in python we have first-class functions, i.e. functions are [first-class] object like any other and they can have attributes, incl. can have custom attributes.
Normally, plain names/variables would do just fine (e.g. in the example in the first post of the thread), but there are use cases where having custom attributes come handy.
Even without custom attributes. functions have plenty of attributes available to you

def spam():
    """Doc string for function spam()

    This is some dummy function
    """
    pass

print(spam.__doc__)
print(dir(spam))
Output:
(sbox) boyan@buranhome ~/sandbox2 $ /home/boyan/sandbox2/sbox/bin/python /home/boyan/sandbox2/forum.py Doc string for function spam() This is some dummy function ['__annotations__', '__call__', '__class__', '__closure__', '__code__', '__defaults__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__get__', '__getattribute__', '__globals__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__kwdefaults__', '__le__', '__lt__', '__module__', '__name__', '__ne__', '__new__', '__qualname__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__']
esphi likes this post
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  I trying to automate the Variable Logon button using the python code but I couldn't surendrasamudrala 0 239 Mar-07-2025, 05:02 AM
Last Post: surendrasamudrala
  not able to call the variable inside the if/elif function mareeswaran 3 489 Feb-09-2025, 04:27 PM
Last Post: mareeswaran
  creating arbitrary local variable names Skaperen 9 1,747 Sep-07-2024, 12:12 AM
Last Post: Skaperen
  Variable Substitution call keys Bobbee 15 2,563 Aug-28-2024, 01:52 PM
Last Post: Bobbee
  how solve: local variable referenced before assignment ? trix 5 1,647 Jun-15-2024, 07:15 PM
Last Post: trix
  Variable being erased inside of if statement deusablutum 8 1,974 Jun-15-2024, 07:00 PM
Last Post: ndc85430
  Cant contain variable in regex robertkwild 3 1,037 Jun-12-2024, 11:50 AM
Last Post: deanhystad
  is this a valid variable name? Skaperen 6 1,592 Jun-05-2024, 10:13 PM
Last Post: Skaperen
  Help with writing monitored data to mysql upon change of one particular variable donottrackmymetadata 3 1,377 Apr-18-2024, 09:55 PM
Last Post: deanhystad
  Commas issue in variable ddahlman 6 1,673 Apr-05-2024, 03:45 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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