This set of Python Multiple Choice Questions & Answers (MCQs) focuses on “Strings – 10”.
1. What will be the output of the following Python code snippet?
print('for'.isidentifier())
a) True
b) False
c) None
d) Error
View Answer
Explanation: Even keywords are considered as valid identifiers.
2. What will be the output of the following Python code snippet?
print('abc'.islower())
a) True
b) False
c) None
d) Error
View Answer
Explanation: There are no uppercase letters.
3. What will be the output of the following Python code snippet?
print('a@ 1,'.islower())
a) True
b) False
c) None
d) Error
View Answer
Explanation: There are no uppercase letters.
4. What will be the output of the following Python code snippet?
print('11'.isnumeric())
a) True
b) False
c) None
d) Error
View Answer
Explanation: All the character are numeric.
5. What will be the output of the following Python code snippet?
print('1.1'.isnumeric())
a) True
b) False
c) None
d) Error
View Answer
Explanation: The character . is not a numeric character.
6. What will be the output of the following Python code snippet?
print('1@ a'.isprintable())
a) True
b) False
c) None
d) Error
View Answer
Explanation: All those characters are printable.
7. What will be the output of the following Python code snippet?
print(''''''.isspace())
a) True
b) False
c) None
d) Error
View Answer
Explanation: None.
8. What will be the output of the following Python code snippet?
print('\t'.isspace())
a) True
b) False
c) None
d) Error
View Answer
Explanation: Tab Spaces are considered as spaces.
9. What will be the output of the following Python code snippet?
print('HelloWorld'.istitle())
a) True
b) False
c) None
d) Error
View Answer
Explanation: The letter W is uppercased.
10. What will be the output of the following Python code snippet?
print('Hello World'.istitle())
a) True
b) False
c) None
d) Error
View Answer
Explanation: It is in title form.
Sanfoundry Global Education & Learning Series – Python.
To practice all test questions on Python, here is complete set of 1000+ Multiple Choice Questions and Answers.
If you find a mistake in question / option / answer, kindly take a screenshot and email to [email protected]
- Apply for Programming Internship
- Check Python Books
- Check Information Technology Books
- Apply for Python Internship
- Practice Programming MCQs