0
How can i print emoticons in python?
I am unable to print emoticons it gives me an error what to do?
1 Antwort
+ 5
import sys, codecs
sys.stdout = codecs.getwriter('utf_16')(sys.stdout.buffer, 'strict')
print('👍😜')
I am unable to print emoticons it gives me an error what to do?