What would be printed if the following Python script were to be run?
a = Dec b = 11 def goo(x, y): x = x / 2 b = y + 1 goo(a, b) print a
Function parameters (x, y) have local scope.
Changing the value of the parameter x has no affect on the value a that was copied into the parameter.
The value Dec would be printed -- i.e., a's value would remain unchanged by the function call.