s = "I Love Python" kw = "Python" kw in s # True s2 = ' welcome to qigezhao.cn ' s2.strip() # 'welcome to qigezhao.cn' s2.strip('.com') # 'welcome to qigezhao' s.center(30, '-') # '--------I Love Python---------'