陈琳的作业一

代码


# 计算出 顺丰控股2019年年度报告(英文版).PDF 第12页文本中最后一个单词的长度
f1 = open("作业一素材.txt", 'r', encoding='utf-8')
txt1 = f1.read()
f1.close()
last_word=txt1.split()[-6].replace('.','')
print('最后一个单词:{}'.format(last_word),'\n长度为{}'.format(len(last_word)))


# 计算出 顺丰控股2019年年度报告.PDF 第13页文本中最后一个句子的长度
f2 = open("作业一附加选做题素材.txt", 'r', encoding='utf-8')
txt2 = f2.read()
f2.close()
last_sentence=txt2.split('。')[-2].replace('\n','')
print('\n最后一个句子:',last_sentence,'\n长度为{}'.format(len(last_sentence)))


结果

结果截图

解释

如果所写代码复杂,且没有良好的注释,那么请在这里补充解释。