Emoji 字符是 Unicode 字符集中的一部分。也就是说, Emoji 符号就是一个文字,它会被渲染为图形。
在代码中注释中添加 emoji 岂不是美滋滋。
emoji1、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 🐮 🍺
网友评论