唐姣的作业一

代码


# replace with your code here
#不知道为什么读文本代码就无法运行,只能把文本粘贴上来了
x=txt.split("\n")     #将文本按行拆开
y=x[-3]#不考虑页脚,选择最后一句
y_=y.split(" ")#将最后一句按空格拆开
z=y_[-1]#得到period.
word=z[:-1]#去掉句号.
print(word)
print("最后一个单词",word,"的长度是:",len(word))


import re
f=open('作业一附加选做题素材.txt',mode='r',encoding='utf-8')
txt=f.read()
f.close()
x=txt.split("。")     #将文本按句子拆开
y=x[-2]#不考虑页脚,选择最后一句
print("最后一句话",y,"的长度是:",len(y))

结果

1

解释

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