0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Pythonで英語アルファベット、英単語をカタカナに変換

Last updated at Posted at 2025-01-09

前書き

英語アルファベット、英単語をカタカナに変換するPythonライブラリをまとめていきます。

alphabet2kana (英語アルファベット→カタカナ)

pipでライブラリalphabet2kanaをインストールします。

pip install alphabet2kana

英語アルファベットをカタカナに変換する。

from alphabet2kana import a2k

print(a2k("test")) 
# 結果: ティーイーエスティー 

print(a2k("Alphabetと日本語")) 
# 結果: エーエルピーエイチエービーイーティーと日本語

alkana (英単語→カタカナ)

pipでライブラリalkanaをインストールします。

python3 -m pip install -U alkana

英単語をカタカナに変換する。入力はアルファベットのみです。

import alkana

print(alkana.get_kana("test")) 
# 結果: テスト 

print(alkana.get_kana("Alphabet")) 
# 結果: アルファベット 

print(alkana.get_kana("Alphabetと日本語")) 
# 結果: None
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?