如何在python中使用表情(emoji)符号?

Posted 平静愉悦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在python中使用表情(emoji)符号?相关的知识,希望对你有一定的参考价值。

表情符号是世界上增长最快的语言,有超过3000种表情符号。那么,为什么不开始在我们的python程序中使用表情符号。在本文中,您将学习如何在python中使用表情符号。

为了在python中使用表情符号,我们需要安装一个emoji库,打开命令提示符并运行此命令。

pip install emoji

该命令将emoji在您的计算机上安装该库,现在您可以在python程序中使用表情符号了。

这个库使用一个表情符号备忘单,以显示该特定cheat._的表情符号

>>> import emoji
#This command will import emoji library in your program
>>> print(emoji.emojize('Give a :thumbs_up: to this article.'))
Give a  to this article.
>>> print(emoji.emojize('Give a :red_heart: to this article.'))
Give a ❤ to this article.

默认情况下,您只能使用表单中的少量表情符号, 如果需要使用其它emoji表情需要emoji.emojize(use_aliases=True)在代码中添加的完整列表

>>> import emoji

>>> print(emoji.emojize('Are you feeling :angry:', use_aliases=True))
Are you feeling 
>>> print(emoji.emojize('Dont forget to wear your :mask:', use_aliases=True))
Dont forget to wear your 

在这里还是要推荐下我自己建的Python学习群:721195303,群里都是学Python的,如果你想学或者正在学习Python ,欢迎你加入,大家都是软件开发党,不定期分享干货(只有Python软件开发相关的),包括我自己整理的一份2021最新的Python进阶资料和零基础教学,欢迎进阶中和对Python感兴趣的小伙伴加入! 

以上是关于如何在python中使用表情(emoji)符号?的主要内容,如果未能解决你的问题,请参考以下文章

python 怎么过滤 emoji 表情符号

如何在 React App 中显示 Emoji

Python string中删除(过滤)掉emoji表情字符

试图从文本中计算表情符号

苹果emoji表情符号 那种特殊的符号怎么打出来

IDEA插件系列(40):Yet another emoji support插件——在编辑器中插入表情符号