f = open('C:/Users/junyi/作业一素材.txt', 'r', encoding='utf-8') txt=f.read() f.close() lastword=txt.split()[-6].replace('.','') print('最后一个单词:{}'.format(lastword),'\n长度为{}'.format(len(lastword)))