1.

What is the output of the code shown? def f(): global a print(a) a = "hello" print(a) a = "world" f() print(a)

A. hello hello world
B. world world hello
C. hello world world
D. world hello world
Answer» C. hello world world


Discussion

No Comment Found