郭一平的作业一

代码


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)))

结果

结果截图

解释