What is the key difference between a local and a global variable in a Python function?
Local variables are only accessible within the function, while global variables can be accessed throughout the program.
Global variables must be defined using the `global` keyword, while local variables are defined without it.
Baroque art features strong contrasts, while Rococo art prefers more subtle transitions
Baroque art is generally larger in scale than Rococo art

Programming Languages Exercises are loading ...