Python Forum
I am getting a NameError that is not defined and not sure why it happen
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I am getting a NameError that is not defined and not sure why it happen
#1
This is my Code:
def test():
    exec("a=100")
    print(a)
    
test()
The Traceback i get is this:
Error:
Traceback (most recent call last): File "C:\Users\lab135\Desktop\test.py", line 5, in <module> test() File "C:\Users\lab135\Desktop\test.py", line 3, in test print(a) NameError: name 'a' is not defined
It does not work.
However,
exec("a=100")
print(a)
It works, why?
In my situation, I need to put it in the function.
Reply
#2
1st you should avid using exec
It does work:
>>> def test():
...     exec("a=100")
...     print(a)
... 
>>> test()
100
>>>
The proper way:
>>> def test():
...     a = 100
...     print(a)
... 
>>> test()
100
print(a)
Reply
#3
(Jun-14-2021, 01:01 PM)Larz60+ Wrote: 1st you should avid using exec
It does work:
>>> def test():
...     exec("a=100")
...     print(a)
... 
>>> test()
100
>>>
The proper way:
>>> def test():
...     a = 100
...     print(a)
... 
>>> test()
100
print(a)


>>> def test():
...     exec("a=100")
...     print(a)
...
>>> test()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 3, in test
NameError: name 'a' is not defined
Which version are you using? I am using 3.9.5 and it does not work.
Reply
#4
I get a name error when running the program. Maybe a difference between Windows and Linux? exec() is obviously creating a new scope and "a" has not been defined outside that scope.

This works:
def test():
    exec("global a; a=100")
    print(a)

test()
Output:
100
And as expected, this does not.
a = 42

def test():
    exec("a=100")
    print(a)

test()
Output:
42
rick0922 likes this post
Reply
#5
(Jun-14-2021, 01:22 PM)deanhystad Wrote: I get a name error when running the program. Maybe a difference between Windows and Linux? exec() is obviously creating a new scope and "a" has not been defined outside that scope.

This works:
def test():
    exec("global a; a=100")
    print(a)

test()
Output:
100
And as expected, this does not.
a = 42

def test():
    exec("a=100")
    print(a)

test()
Output:
42

Thank you very much. It is very useful. It helps me a lot.
Reply
#6
This is interesting.
def test():
    a = 0
    exec("print(dir())")

test()
Output:
['a']
exec is "inheriting" variables defined in the local scope, but these must not be the same variables. Changing the variable "inside" exec does not change the value "outside" exec.
def test():
    a = 0
    exec("print(a);a=5;print(a)")
    print(a)

test()
Output:
0 5 0
This is similar to what happens when using fork. In the Unix/Linux world the forked process shares the same variables as the parent process. Changing "a" in the forked process changes "a" in the parent because a is the same variable, resides in the same memory. In Windows a brand new process is created for the fork and the parent process and forked process are separate. The forked process has the same variable names and initial values, but the forked variables are not the same variables that were defined in the parent process.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  I'm getting a NameError: ...not defined. vonArre 2 160 Mar-24-2024, 10:25 PM
Last Post: vonArre
  Getting NameError for a function that is defined JonWayn 2 1,056 Dec-11-2022, 01:53 PM
Last Post: JonWayn
Question Help with function - encryption - messages - NameError: name 'message' is not defined MrKnd94 4 2,776 Nov-11-2022, 09:03 PM
Last Post: deanhystad
  [split] NameError: name 'csvwriter' is not defined. Did you mean: 'writer'? cathy12 4 3,201 Sep-01-2022, 07:41 PM
Last Post: deanhystad
  NameError: name ‘app_ctrl’ is not defined 3lnyn0 0 1,457 Jul-04-2022, 08:08 PM
Last Post: 3lnyn0
  NameError: name 'hash_value_x_t' is not defined Anldra12 5 1,864 May-13-2022, 03:37 PM
Last Post: deanhystad
  NameError: name 'cross_validation' is not defined tmhsa 6 13,182 Jan-17-2022, 09:53 PM
Last Post: TropicalHeat
  NameError: name “x” is not defined ... even though x is defined campjaybellson 7 14,674 Oct-20-2021, 05:39 PM
Last Post: deanhystad
  NameError: name 'Particle' is not defined in Pygame drunkenneo 4 3,299 Aug-15-2021, 06:12 PM
Last Post: bowlofred
  NameError: name 'u1' is not defined (on parser code Python) Melcu54 1 2,844 Jul-26-2021, 04:36 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

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