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


Messages In This Thread
Please explain uncommon way of declaring and using variable [function.variable] - by esphi - Nov-06-2020, 03:37 PM

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,748 Sep-07-2024, 12:12 AM
Last Post: Skaperen
  Variable Substitution call keys Bobbee 15 2,566 Aug-28-2024, 01:52 PM
Last Post: Bobbee
  how solve: local variable referenced before assignment ? trix 5 1,649 Jun-15-2024, 07:15 PM
Last Post: trix
  Variable being erased inside of if statement deusablutum 8 1,975 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,594 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,379 Apr-18-2024, 09:55 PM
Last Post: deanhystad
  Commas issue in variable ddahlman 6 1,674 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