Question:
How to write emoji in print function as string in python?
Repl link:
code snippet
Question:
How to write emoji in print function as string in python?
Repl link:
code snippet
Lets say you want to search for an emoji, eg. a star emoji
just put it like this:
print('⭐')
and you will be able to print a star.
You can use Unicode, e.g.
print('\u1F389')
Outputs:
🎉
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.