可以使用正则表达式的方法
正则表达式:工作职责:\s+
import recontent = "页面内容"re_1 = re.search('工作职责:\s+(.+?)', content)if re_1: print re_1.group(1)else: print "not find !"
因为正则表达式有中文 所以要保证你的内容与文本是一个编码