

InterviewSolution
Saved Bookmarks
1. |
Suppose s is “ World”, what is s.strip()?(a) World(b) World(c) WORLD(d) World |
Answer» Right choice is (d) World The explanation: Execute help(string.strip) to find details. |
|