Use the strip() method.

Example:

>>> "\t abc    \n".strip()
"abc"

Variants are lstrip() and rstrip().

Regards,
Kay

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to