日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

python制作英语字典_如何在Python中创建字典词典

發布時間:2025/4/16 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python制作英语字典_如何在Python中创建字典词典 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

如果它只是提取和檢索三元組,你應該嘗試使用NLTK:

>>> import nltk

>>> sent = "this is a foo bar crazycoder"

>>> trigrams = nltk.ngrams(sent.split(), 3)

[('this', 'is', 'a'), ('is', 'a', 'foo'), ('a', 'foo', 'bar'), ('foo', 'bar', 'crazycoder')]

# token "a" in first element of trigram

>>> first_a = [i for i in trigrams if i[0] == "a"]

[('a', 'foo', 'bar')]

# token "a" in 2nd element of trigram

>>> second_a = [i for i in trigrams if i[1] == "a"]

[('is', 'a', 'foo')]

# token "a" in third element of trigram

>>> third = [i for i in trigrams if i[2] == "a"]

[('this', 'is', 'a')]

# look for 2gram in trigrams

>> two_foobar = [i for i in trigrams if "foo" in i and "bar" in i]

[('a', 'foo', 'bar'), ('foo', 'bar', 'crazycoder')]

# look for a perfect 3gram

>> perfect = [i fof i in trigrams if "foo bar crazycoder".split() == i]

[('foo', 'bar', 'crazycoder')]

總結

以上是生活随笔為你收集整理的python制作英语字典_如何在Python中创建字典词典的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。