符號化


在Python中,標記化基本上是指將更大的文字體分成更小的行,單詞甚至為非英語語言建立單詞。各種標記化函式功能內建在nltk模組中,可以在程式中使用,如下所示。

行標記化

在下面的範例中,使用函式sent_tokenize將給定文字劃分為不同的行。

import nltk
sentence_data = "The First sentence is about Python. The Second: about Django. You can learn Python,Django and Data Ananlysis here. "
nltk_tokens = nltk.sent_tokenize(sentence_data)
print (nltk_tokens)

當執行上面的程式時,得到以下輸出 -

['The First sentence is about Python.', 'The Second: about Django.', 'You can learn Python,Django and Data Ananlysis here.']

非英語標記化

在下面的範例中,將德語文字標記為。

import nltk

german_tokenizer = nltk.data.load('tokenizers/punkt/german.pickle')
german_tokens=german_tokenizer.tokenize('Wie geht es Ihnen?  Gut, danke.')
print(german_tokens)

當執行上面的程式時,得到以下輸出 -

['Wie geht es Ihnen?', 'Gut, danke.']

單詞符號化

我們使用nltkword_tokenize函式將單詞標記。參考以下程式碼 -

import nltk

word_data = "It originated from the idea that there are readers who prefer learning new skills from the comforts of their drawing rooms"
nltk_tokens = nltk.word_tokenize(word_data)
print (nltk_tokens)

當執行上面的程式時,得到以下輸出 -

['It', 'originated', 'from', 'the', 'idea', 'that', 'there', 'are', 'readers', 
'who', 'prefer', 'learning', 'new', 'skills', 'from', 'the',
'comforts', 'of', 'their', 'drawing', 'rooms']