InterviewSolution
Saved Bookmarks
| 1. |
Which of the following functions is not defined under the sys module?(a) sys.platform(b) sys.path(c) sys.readline(d) sys.argv |
|
Answer» Correct answer is (c) sys.readline The explanation is: The functions sys.platform, sys.path and sys.argv are defined under the sys module. The function sys.readline is not defined. However, sys.stdin.readline is defined. |
|