# Мөрний эхэн ба төгсгөлийн тэмдэгтүүдийг арилгахын тулд .strip() аргыг ашиглаж болно.
# Мөрийн аргументыг арга руу дамжуулж, арилгах тэмдэгтүүдийн багцыг зааж өгч болно.
# Аргын аргумент байхгүй бол хоосон зай арилна.
text1 = ' apples and oranges '
text1.strip() # => 'apples and oranges'
text2 = '...+...lemons and limes...-...'
# Here we strip just the "." characters
text2.strip('.') # => '+...lemons and limes...-'
# Here we strip both "." and "+" characters
text2.strip('.+') # => 'lemons and limes...-'
# Here we strip ".", "+", and "-" characters
text2.strip('.+-') # => 'lemons and limes'