Python 3 Script to Print Emoji on Command Line Using Emoji Module Full Project For Beginners
Welcome folks today in this post we will be printing emoji
on the command line using emoji
module in python. All the full source code of the application is shown below.
Get Started
In order to get started you need to install the following library using the pip
command as shown below
pip install emoji
After installing this make an app.py
file and copy paste the following code
app.py
import emoji
print(emoji.emojize(":grinning_face_with_big_eyes:"))
print(emoji.emojize(":winking_face_with_tongue:"))
print(emoji.emojize(":zipper-mouth_face:"))
Now just run the above script by typing the below command
python app.py