Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
undefined variables
#2
I am probably not the brigthest and my feeble mind don't get it. Probably I misinterpret the question or don't comprehend it.

If one will 'comment out the dangerous functions for a while until i am sure it will call them appropriately' how can these functions 'to assign results to a variable'? There is no variable/value 'to exist' (keep) because it has not created in the first place.

If one tries to assign name to non-existing function result then it will raise NameError and variable will not come into existance:

>>> meaning_of_life = fourty_two()
/.../
NameError: name 'fourty_two' is not defined
>>> meaning_of_life
/.../
NameError: name 'meaning_of_life' is not defined
My understanding is that in order to 'continue to exist' one must run 'dangerous' function at least once.

On unrelated note:

If I want to check whether value exists then I would do simple try..except:

try: 
    x
except NameError:
    x = # assign some value


If I want to have some predefined variables then I put them at the start of the script. If I uncomment function then it just overwrites predefined value.
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


Messages In This Thread
undefined variables - by Skaperen - Aug-28-2019, 05:27 AM
RE: undefined variables - by perfringo - Aug-28-2019, 10:34 AM
RE: undefined variables - by ThomasL - Aug-28-2019, 12:07 PM
RE: undefined variables - by Skaperen - Aug-28-2019, 07:55 PM
RE: undefined variables - by ndc85430 - Sep-08-2019, 07:51 AM
RE: undefined variables - by Skaperen - Sep-08-2019, 06:32 PM
RE: undefined variables - by ichabod801 - Sep-08-2019, 07:06 PM
RE: undefined variables - by Skaperen - Sep-08-2019, 10:22 PM
RE: undefined variables - by ndc85430 - Sep-09-2019, 05:53 AM
RE: undefined variables - by Skaperen - Sep-09-2019, 06:17 AM
RE: undefined variables - by wavic - Sep-09-2019, 12:46 PM
RE: undefined variables - by ichabod801 - Sep-09-2019, 12:49 PM
RE: undefined variables - by Skaperen - Sep-10-2019, 01:24 AM
RE: undefined variables - by ichabod801 - Sep-10-2019, 11:56 AM
RE: undefined variables - by DeaD_EyE - Sep-10-2019, 01:25 PM
RE: undefined variables - by ndc85430 - Sep-11-2019, 05:50 AM
RE: undefined variables - by Skaperen - Sep-11-2019, 07:25 PM
RE: undefined variables - by ndc85430 - Sep-12-2019, 05:36 PM
RE: undefined variables - by Skaperen - Sep-12-2019, 11:33 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  compiling with an undefined variable Skaperen 0 1,022 Nov-10-2022, 11:59 PM
Last Post: Skaperen

Forum Jump:

User Panel Messages

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