张艺轩的作业一

作业一代码


  f = open(r'作业一素材.txt',encoding = 'utf-8')
  fo = f.read()
  f.close()
  temp = fo.strip().split('.')[36]
  temp1 = temp.split(' ')[-1]
  print('最后一个单词的长度是:',len(temp1))

作业一结果

结果截图 >

附加题代码

    
      txt2 = f2.read()
      f2.close()   
      temp = txt2.split('。')[-2] #不考虑页脚
      temp = sentence2.replace('\n','') #剔除除换行符
      lens = len(sentence2) + 1 #补充被去掉的句号宽度
      print('最后一个句子的长度为:',len2)
    
    

附加题结果

结果截图

步骤解释