美文网首页
python3 输出emoji表情

python3 输出emoji表情

作者: Ziger丶 | 来源:发表于2021-02-20 15:02 被阅读0次

Emoji 字符是 Unicode 字符集中的一部分。也就是说, Emoji 符号就是一个文字,它会被渲染为图形。

在代码中注释中添加 emoji 岂不是美滋滋。

emoji

1、emoji库安装

pip install emoji

2、emoji库测试

import emoji

print(emoji.emojize('Your :horse: is gone'))

#Your 🐎 is gone 

3、输出其他emoji表情

在python中,我们还可以利用扩展库emoji ,这个库给表情起了“别名”(见下图),以便通过“别名”,获取emoji表情。

https://www.webfx.com/tools/emoji-cheat-sheet/

emoji表情
import emoji

print(emoji.emojize("Your :horse: is gone ",use_aliases = False ), end = '' )
print(emoji.emojize("Just your  :woman:  leave the :musical_score: ",use_aliases = True ), end = '' )
print(emoji.emojize("You are :cow: :beer: ",use_aliases = True ), end = '' )


1、#Your 🐎 is gone 
2、#Just your  👩  leave the 🎼 
3、#You are 🐮 🍺 

相关文章

网友评论

      本文标题:python3 输出emoji表情

      本文链接:https://www.haomeiwen.com/subject/zlmtfltx.html