Print Emojis Using Python
Emojis are a great way to add some fun to your Python programs. In this article, we will learn how to print emojis using Python. We will use the emoji
library to print emojis in Python. The emoji
library provides a simple way to print emojis using Python.
Install the emoji
library
You can install the emoji
library using pip. Open your terminal and run the following command:
pip install emoji
Print emojis using Python
Now that we have installed the emoji
library, we can use it to print emojis in Python. Here is an example:
import emoji
print(emoji.emojize("hello guys :waving_hand:"))
print(emoji.emojize('Python is :thumbs_up:'))
Output
hello guys π
Python is π
In the above example, we used the emoji.emojize
function to print emojis. The emoji.emojize
function takes a string as input and returns a string with emojis replaced by their corresponding Unicode characters.
You can find a list of emojis and their corresponding Unicode characters here.
Thatβs it! You now know how to print emojis using Python.
Thanks for reading! π