BaşlayınÜcretsiz Başlayın

Detect language of a list of strings

Now you will detect the language of each item in a list. A list called sentences has been created for you and it contains 3 sentences, each in a different language. They have been randomly extracted from the product reviews dataset.

Bu egzersiz

Sentiment Analysis in Python

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Iterate over the sentences in the list.
  • Detect the language of each sentence and append the detected language to the empty list languages.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

from langdetect import detect_langs

languages = []

# Loop over the sentences in the list and detect their language
for sentence in _____:
    languages.____(____(sentence))
    
print('The detected languages are: ', languages)
Kodu Düzenle ve Çalıştır