import re f=open('/Users/h/Desktop/python金融数据获取与处理/作业一素材.txt',encoding='utf-8') txt=f.read() lines=txt.splitlines() object=lines[-3].rstrip('.') lastword=re.split(' ',object)[-1] print('最后一个单词',lastword,'的长度为:',len(lastword))