What Will Be The Output Of The Following Python Codep Pre #661
What will be the output of the following Python code?</p> <pre><code class="language-python" line="1"> min = (lambda x, y: x if x < y else y) min(101*99, 102*98) </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Functions - Python Function - Quiz No.3.
What will be the output of the following Python code?
min = (lambda x, y: x if x < y else y) min(101*99, 102*98)
9997
9999
9996
None of the mentioned