百科问答小站 logo
百科问答小站 font logo



Python中有什么方法能将一段英文里的不重复单词挑出来? 第1页

  

user avatar   PandoraEartha 网友的相关建议: 
      

       string='the tree turn green and green' words=string.split() wordsCount={} for word in words:     wordsCount[word]=wordsCount.get(word,0)+1 for wordsCounted in wordsCount.keys():     if wordsCount[wordsCounted]==1:         print(wordsCounted)     


user avatar    网友的相关建议: 
      
       def _pick_words(s: str):     from collections import Counter     words = s.split()     result = Counter(words)     return [w for w, t in result.items() if t == 1]     


       def _pick_words(s: str):     result = {}     words = s.split()     for word in words:         times = result.get(word, 0)         result[word] = times + 1     return [w for w, t in result.items() if t == 1]     




  

相关话题

  Excel 的 VBA 现在还算是办公利器吗? 
  'module' object has no attribute 'HTTPSConnection' 问题? 
  Python的哪个Web框架学习周期短,学习成本低? 
  计算机视觉研一,只学过Python基础,目前代码能力很差,要不要换导师,不换的话如何毕业? 
  后端领域,写java的程序员普遍比写Python和go的程序员水平低吗? 
  python的numpy向量化语句为什么会比for快? 
  Python在数据科学领域能否完全取代R? 
  Python中for i in somelist,如果在for循环内改变somelist会发生什么? 
  python学习一定用pycharm吗? 
  Python如何将正则匹配到的多个位置替换成为不同内容? 

前一个讨论
为什么《原神》会有大佬帮忙做任务?
下一个讨论
家人们,帮我看看这个极限?





© 2025-01-31 - tinynew.org. All Rights Reserved.
© 2025-01-31 - tinynew.org. 保留所有权利