Which of the following variables are global ?
a, b = 1, 2 def foo(): global c c = a + b
"a" and "b" are global variables are defined outside function (at module namespace)"c" is explicitly defined as global inside the function in this statement global cSO all the variables a, b and c are global
global c
Comment here: