6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PythonでライブラリTranslatorの使い方の簡単な説明

Posted at

#translateの使い方
Pythonを使って、翻訳機を作るために利用したライブラリであるtranslateの使い方を書いておきます。他にも翻訳できる機能としてgoogletransがありますが、環境構築がうまくいかなかったため、すぐにインストールして簡単に使用することができたtranslateを使いました。

まず、以下のようにtranslateをインストールします。

$pip install translate

次に以下のようにライブラリをインポートします。

from translate import Translator

最後に以下のようにある言語からある言語へと翻訳したい二つの言語、翻訳したい言葉を決めれば完了です。変数resultに翻訳された結果が格納されます。(この場合、日本語から英語に言葉が翻訳されます。そして、英語で"Hello"という言葉が変数resultに格納されます。アルファベット二文字表記で日本語は"ja"と表し、英語は"en"と表します。)

translator = Translator(from_lang = "ja", to_lang = "en")
result = translator.translate("こんにちは")

あらゆる言語のアルファベット二文字表記は以下のサイトに載っているので、ぜひ参考にしてみてください。しかし、そのサイトに載っているすべての言語が利用できるわけではないので注意してください。
https://www.benricho.org/translate/languagecode.html

6
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?