Python使用emoji
Posted Harris-H
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python使用emoji相关的知识,希望对你有一定的参考价值。
Python使用emoji
1.按照emoji模块
pip install emoji -i https://pypi.tuna.tsinghua.edu.cn/simple
2.基本操作
import emoji
if __name__ == '__main__':
str = emoji.emojize("Herio is :thumbs_up:") # 将emoji语句转化为emoji表情
print(str)
print(emoji.emojize("Python is fun :red_heart:", variant="emoji_type"))
print(emoji.demojize('Python es 👍', language='es')) # 解码
"""
Herio is 👍
Python is fun ❤️
Python es :pulgar_hacia_arriba:
"""
3.表情网站
点击想要的表情就会自动复制该语句。
4.参考文章
以上是关于Python使用emoji的主要内容,如果未能解决你的问题,请参考以下文章