1
正從一個WebSocket連接的響應時,我總是遇到這樣的錯誤:如何在python中將unicode字符串編碼爲utf-8?
print type(json.dumps(data))
TypeError: 'unicode' object is not callable
也:
print type(data)
TypeError: 'unicode' object is not callable
和:
print type(str(data))
TypeError: 'unicode' object is not callable
誰能教我如何編碼數據字符串回到utf-8?
哦,謝謝,我發現它的一個我使用的功能。下次我會小心的。 – noobprog