निम्नलिखित में से कौन सा फ़ंक्शन हमें पायथन के उस संस्करण को खोजने में मदद कर सकता है जिस पर हम वर्तमान में काम कर रहे हैं?<break-line><break-line>Which of the following functions can help us to find the version of python that we are currently working on?
निम्नलिखित में से कौन सा फ़ंक्शन sys मॉड्यूल के अंतर्गत परिभाषित नहीं है?<break-line><break-line>Which of the following functions is not defined under the sys module?
निम्नलिखित का आउटपुट लिखें<break-line><break-line>Write the output of the following:<pre><code>f = open("test.txt", "w+")
f.write("GyanXp-App")
f.seek(5)
a = f.read(3)
print(a)</code></pre>