3 Respuestas
+ 6
Each character has a unicode, you can find Farsi Characters unicode online, for example:
print(u"\u06CC")
This will output a Farsi Character, for other characters, you just have to replace the number with the desired one.
+ 6
if you want to use playground to print for you, do not forget to add the following code on top of the file:
import sys
import codecs
sys.stdout = codecs.getwriter('utf_16')(sys.stdout.buffer, 'strict')