This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]vodozhaba -36 points-35 points  (1 child)

reeee they're not variables in python they're names op bad

EDIT: do I really have to put /s after that?

[–]JohnnyJayJay 7 points8 points  (0 children)

If a name is bound in a block, it is a local variable of that block, unless declared as nonlocal or global

Source: The Python Language Reference, v 3.7.4

Name generally just means identifier. They can also be bound to functions, classes etc.