Question: Multiple Choice Question: str methods To answer this question, refer to Python documentation of str methods isspace, strip, rfind, and isupper. Select the code fragment(s)
Multiple Choice Question: str methods
To answer this question, refer to Python documentation of str methods isspace, strip, rfind, and isupper. Select the code fragment(s) that evaluate(s) to True.
1.'how are you?'.isspace()
2.' Hi! '.strip() == 'Hi! '
3.'hello'.rfind('l') == 3 4.'007B!'.isupper()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
