Answer
Good Morning
Work Step by Step
s=" \t Good\t Morning\n"
strip()_ is used to remove (strip) the whitespace characters from both ends of a string.
The characters ' ', \t, \f, \r, and \n are known as the whitespace characters. So:
s.strip()=Good Morning