Login
From:
www.pythonmorsels.com
(Uncensored)
subscribe
Local and global variables in Python - Python Morsels
https://www.pythonmorsels.com/local-and-global-variables/
links
backlinks
Roast topics
Find topics
Find it!
Within a function in Python, you can read from global variables and read from or write to local variables. Within each function, each variable name is either local or global (but not both).