Python Principles
Python Q&A

How do I print smilies or emoticons in Python?

Answer:

You can use \N inside of print:

>>> print("\N{winking face}")
😉
>>> print("\N{kissing face}")
😗

You can find the names of smilies by googling "CLDR short names list".