What Will Be The Output Of The Following Python Codep Pre #139
What will be the output of the following Python code?</p> <pre><code class="language-python">def f(x): def f1(a, b): print("hello") if b==0: print("NO") return return f(a, b) return f1 @f def f(a, b): return a%b f(4,0)</code></pre>
This multiple choice question (MCQ) is related to the book/course
gs gs109 Python.
It can also be found in
gs gs109 Formatting & Decorators in Python - Python Decorators - Quiz No.1.