#作业一
import re
f = open('C:/Users/cch/Desktop/homework1.py',mode='r',encoding='utf-8')
para = f.read()
lines = para.splitlines()
line = lines[-3]
word = re.split(' ',line)
length = len(word[-1])-1
print('最后一个单词的长度为:',length)
先将句子和单词分割,最后分割单词和标点符号。