当前位置: 高中信息技术 / 单选题
  • 1. (2022·浙江模拟) 小明想要统计一篇英语作文中某些单词出现的次数,他设计了如下算法:

    #将要统计的单词储存在列表lis中,代码略

    wordcount={}

    #导入作文,分词后储存在列表zw中,代码略

    for word in zw:

        if word in lis:

              ①  :

                wordcount[word]+=1

             ②  :

                wordcount[word]=1

    print(wordcount)

      横线处应填入的代码是(    )

    A . ①if word in wordcount      ②else B . ①if word in lis            ②else C . ①if wordcount[word]!=1     ②else D . ①if wordcount[word]==True  ②elif wordcount[word]==False

微信扫码预览、分享更方便