(PCEP) Certified Entry-Level Python Programmer Practice Test

PCEP Variable Scope and the `global` keyword 3

Free · Instant Results

What is the output? x = 'global' def test(): global x x = 'local' test() print(x)
▶ Start Practice Test