许子悦的作业一

代码


import re

f = open('作业一素材.txt',mode='r', encoding='utf-8')
txt = f.read()
f.close()
line = re.split('[\n]',txt)
sentence = line[-3]
word_list = re.split('[\s]',sentence)
word_len = len(word_list[-1])-1
print(word_len)

结果

结果截图

解释

请见上述代码注释。