

InterviewSolution
Saved Bookmarks
1. |
Which of the following functions can help us to find the version of python that we are currently working on?(a) sys.version(b) sys.version()(c) sys.version(0)(d) sys.version(1)This question was posed to me in homework.My enquiry is from Sys Module in section Mapping Functions and Modules of Python |
Answer» The correct answer is (a) sys.VERSION |
|