The charmap' codec is unable to encode the character 'u202f' in position 168, which maps to undefined> wr.writerows(unpacking).)
I don't know what the problem is; if someone already has this problem, he can help us.
Please, if anyone can assist me!
The charmap' codec is unable to encode the character 'u202f' in position 168, which maps to undefined> wr.writerows(unpacking).)
I don't know what the problem is; if someone already has this problem, he can help us.
Please, if anyone can assist me!
 
    
    you have to change the output encoding
import sys
print sys.stdout.encoding
print u"Stöcker".encode(sys.stdout.encoding, errors='replace')
print u"Стоескер".encode(sys.stdout.encoding, errors='replace')
for more click here
