निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>from math import *
floor(3.7)</code></pre>
पायथन प्रोग्राम कमांड लाइन से कितने arguments स्वीकार कर सकता है?<break-line><break-line>How many arguments a Python program can accept from the command line ?
निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code ?<pre><code>a = set('dcma')
b = set('mlpc')
print(a^b)</code></pre>