我正在使用字典文件。我只是需要用詞來結束「它」。我在使用計數器計算雙輔音時,以這些單詞的「ed」結尾。我應該接收回來的代碼是(最後3行):查找以字母「it」結尾的單詞...否定所有其他單詞?
wait waited
worrit worrited
simple= 83 double= 45"
從我有什麼,我需要做的就是擺脫沒有在結束所有換句話說,「它」和我無法提出解決方案。單詞endswith只是重印了一些單詞。
words=[line.rstrip() for line in open('')]
wordset=set(words)
count=0
countt=0
for word in words:
if word[-1] != 't': continue
if word+'i' in wordset: continue
simple = word + 'ed'
double = word + 'ted'
if simple in wordset:
print(word,simple)
count+=1
elif double in wordset:
print(word,double,'*')
countt+=1
print('simple=',count,' double=',countt)
如果不是以「it」結尾的話,您是否要計算一個「tt」字(「tt」in word') ( 「它」)')? – jfs
我只需要以「it」結尾的單詞。我在使用計數器計算雙輔音時,以這些單詞的「ed」結尾。 –
你只在t_中檢查_ending。如果單詞[-2:]!='它'不會'繼續'更合適嗎?什麼是'如果word +'我'在wordset:繼續'應該完成? –