Skip to content

Commit b433d49

Browse files
Merge pull request avinashkranjan#179 from Ayush7614/master
Creating-Emoji-Using-Python/README.md
2 parents fe2d04b + bff7335 commit b433d49

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### This is python program to create emojis This is the python program from this program we create emojis First go to your text editor and click on termianl and after clicking on terminal click on the new terminal and write `pip install emoji` this is python module you can install it in your terminal
2+
3+
### Here we have to use both unicodes and module
4+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import emoji
2+
3+
4+
print(emoji.emojize(":grinning_face_with_big_eyes:"))
5+
print(emoji.emojize(":winking_face_with_tongue:"))
6+
print(emoji.emojize(":zipper-mouth_face:"))
7+
8+
# grinning face
9+
print("\U0001f600")
10+
11+
# grinning squinting face
12+
print("\U0001F606")
13+
14+
# rolling on the floor laughing
15+
print("\U0001F923")

0 commit comments

Comments
 (0)