+ 1
Any one can teach me how to add emojis? Plz
9 Antworten
+ 4
Add emojis in what?
+ 4
Natasha Sing u can use unicode for emojis
+ 3
If you need to print it, you can either select from keyboard or use the whole Unicode table to find your preferred character, including emojis.
You can either browse the table yourself, for example here:
https://www.fileformat.info/info/unicode/index.htm
or here:
https://en.m.wikipedia.org/wiki/List_of_Unicode_characters
Then use it in a print statement, by giving its number, like this:
https://code.sololearn.com/c38hmKFESSf2/?ref=app
https://code.sololearn.com/cT10yuI5ZQiB/?ref=app
Browsing block by block can also be helpful:
https://code.sololearn.com/csTae6tX7D4l/?ref=app
+ 2
You have to type print ("\U0001F600")
+ 2
https://unicode.org/emoji/charts/full-emoji-list.html#1f4a9
This is the website for the values of emojis . You can use this for python . Instead of the '+' sign, replace it with 000. You can also use the emoji module in python.
pip install emoji
print (emoji.emojize(:+1,True))
+ 2
# grinning face
print("\N{grinning face}")
# slightly smiling face
print("\N{slightly smiling face}")
# winking face
print("\N{winking face}")
This are the codes to show some emoji in python. Thank frnds
+ 2
You can insert more emoji by using the codes but it is important to remember the emoji name and put there name with the codes......Some examples of codes are in my above answer
0
In python
0
in what?