What is the expected output of the following code?
What is the expected output of the following code? def func(text, num): while num > 0: print(text) num = num - 1 func('Hello', 3)A . An infinite loop. B. Hello Hello Hello C. Hello Hello Hello Hello D. Hello HelloView AnswerAnswer: A Explanation: Topics: def while indentation Try it yourself:...