[ Team LiB ] |
Chapter 13. Scopes and ArgumentsChapter 12 looked at basic function definition and calls. As we've seen, the basic function model is simple to use in Python. This chapter presents the details behind Python's scopes—the places where variables are defined, as well as argument passing—the way that objects are sent to functions as inputs. |
[ Team LiB ] |