McqMate
Q. |
Suppose s is “\t\tWorld\n”, what is s.strip()? |
A. | \\t\\tworld\\n |
B. | \\t\\tworld\\n |
C. | \\t\\tworld\\n |
D. | world |
Answer» D. world | |
Explanation: execute help(string.strip) to find details. |
View all MCQs in
Problem Solving and Python ProgrammingNo comments yet