3
在test.py我有Python中通過 '混帳擊' 打印Unicode字符串獲得 'UnicodeEncodeError'
print('Привет мир')
與CMD工作正常
> python test.py
?????? ???
與混帳擊有錯誤
$ python test.py
Traceback (most recent call last):
File "test.py", line 2, in <module>
print('\u041f\u0440\u0438\u0432\u0435\u0442 \u043c\u0438\u0440')
File "C:\Users\raksa\AppData\Local\Programs\Python\Python36\lib\encodings\cp1252.py", line 19, in encode
return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode characters in position 0-5: character maps to <undefined>
有誰知道背後得到通過時的Git 猛砸執行Python代碼錯誤的原因是什麼?
謝謝您的回答,我得到了更多的想法 –
那麼,有沒有辦法讓git的慶典在這種情況下(不返回錯誤,無論它是否打印字符)? –