What is the output of the following code? › Category: Python › What is the output of the following code? 0 Vote Up Vote Down Editor">Editor Staff asked 2 years ago What is the output of the following code? v = ‘Hello’ def f():v = ‘World’return v print(f())print(v) a) WorldWorld b) HelloHello c) WorldHello d) HelloWorld 1 Answers 0 Vote Up Vote Down Editor">Editor Staff answered 2 years ago Correct answer is c) WorldHello