import re
f = open('作业一素材.txt',encoding='utf-8')
txt = f.readlines()
f.close()
a = txt[-3]
b = a.replace('.\n','')
c = b.split(' ')
d = c[-1]
e = len(d)
print('最后一个单词的长度为{}'.format(e))
以行形式读作业素材,取倒数第三行,去除行最后的标点和\n,取最后一个单词,读其长度
import re
f = open('作业一附加选做题素材.txt',encoding='utf-8')
txt = f.read()
f.close()
a = txt.replace('顺丰控股股份有限公司\nS.F. HOLDING CO., LTD.', '')
b = a.replace('\n','')
c = b.split('。')
d = c[-2]
e = d.split(',')
g = e[-1]
h = len(g)
print('最后一句长度为{}'.format(h))
读素材,将页脚内容替换,把\n替换,以句号切割,取最后一句,再以逗号切割,取最后一小句,读取长度。