1.

What is the output of the code shown below? def f1(x): global x x+=1 print(x) f1(15) print("hello")

A. error
B. hello
C. 16
D. 16 hello
Answer» B. hello


Discussion

No Comment Found