CBSE Class 11 Computer Science
Question 20 of 91
String Manipulation — Question 10
Back to all questions 10
Question Question 10
What is the output of the following code?
str1 = "Mission 999"
str2 = "999"
print(str1.isdigit(),str2.isdigit())- False True ✓
- False False
- True False
- True True