13
15

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 5 years have passed since last update.

Pythonで絵文字を出力する

Last updated at Posted at 2018-03-14

どうも。
主にiOSエンジニアですが、他の言語も色々やってます。

今回、Pythonで文字出力してるときにふと絵文字出したくなったのでやってみました。

準備

文字コードを熟知して色々やれば、自分でもできるんでしょうが、今回はemojiというパッケージ使います。

$ pip install emoji

使い方

あとは使うだけ。
emoji.emojizeを使って文字を出力します。

import emoji

print emoji.emojize(':smile:', use_aliases=True)
print emoji.emojize(':heart: :zzz: :+1:', use_aliases=True)

スクリーンショット 2018-03-15 0.52.20.png

出てます。

:(キーワード):という形式で指定するようです。

絵文字として使用できるキーワードは以下を参照してください。
EMOJI CHEAT SHEET
アイコンクリックしたらコピーされます。

use_aliases=Trueにすると、公式のキーワードだけでなくエイリアスも使えるとかなんとか。
基本Trueで良いのではと思います。

以上です。

13
15
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
13
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?