Correct answer is : C
The outermost leading and trailing chars argument values are stripped from the string. Characters are removed from the leading end until reaching a string character that is not contained in the set of characters in chars. A similar action takes place on the trailing end
Refer to - https://docs.python.org/3/library/stdtypes.html#str.strip
Comment here: