Home python All Russian Words

All Russian Words

Author

Date

Category

From where can I take all the words in Russian? It is necessary for your own T9 on the PC.
(Preferably all words with array)


Answer 1, Authority 100%

Exclusively in addition to the answer @timur. I do not know how many people are likely that they gave refills that he gave (but suddenly). A pair of lines of code. We take the files on the links and save them in UTF-8 :

import requests
Response = Requests.get ('https://raw.githubusercontent.com/danakt/russian-words/master/russian.txt')
Text = Response.content.decode ('CP1251')
With Open ('russian.txt', 'WB') AS RU:
  RU.WRITE (text.encode ('UTF-8'))
Response = Requests.get ('https://raw.githubusercontent.com/danakt/russian-words/master/russian_surnames.txt')
Text = Response.content.decode ('CP1251')
With Open ('russian_surnames.txt', 'WB') AS RU:
  RU.WRITE (text.encode ('UTF-8'))

Answer 2, Authority 100%

here you can take a file with the list of Russian words

Programmers, Start Your Engines!

Why spend time searching for the correct question and then entering your answer when you can find it in a second? That's what CompuTicket is all about! Here you'll find thousands of questions and answers from hundreds of computer languages.

Recent questions