from string import maketrans
title = "come out Linda~"
print title.find("Linda")#9
print title.find("linda")#-1
seq = ["a","b","c","d","e"]
sep = "*"
print sep.join(seq)#a*b*c*d*e
name = "LINDA"
print name.lower()#linda
print "This is a test".replace("is","eez")#Theez eez a test
print "1*2*3*4*5".split("*")#['1', '2', '3', '4', '5']
print ' hello '
print ' hello '.strip()#hello
print '@#$%^&hello@#$!%^&'.strip('@#$%^&')#hello@#$!
table = maketrans('cs','kz')
print 'this is a incredible test'.translate(table)#thiz iz a inkredible tezt
print "Done!Tada!!"
#后面是输出结果咯~