print "   hello   ".strip()
print "   hello   ".lstrip()
print "   hello   ".rstrip()
print "   hello   ".partition("l")
print "   hello   ".rpartition("l")
print "   HELlo   ".lower()
print "   heLLO   ".upper()
print "hi there".split(" ")