def trim(s): while s != "" and s[0] == " ": s = s[1:] while s != "" and s[len(s) - 1] == " ": s = s[0:len(s) - 1] return s
Sign in to make a reply
🐬