String Python Tutorial

import string
badSentence = "\t\tThis sentence has problems.   "
print "\nBad:\n" + badSentence
print "\nFixed:\n" + badSentence.lstrip('\t')