TypeError:JSON对象必须为str,而不是Jupyter笔记本上的“ bytes”

时间:2018-12-12 22:56:44

标签: python json utf-8 jupyter

完全相同的代码

A=b'["c1006","c1007"]'
json.loads(A)

可以在Python控制台中使用,但不能在Jupyter笔记本中使用

TypeError: the JSON object must be str, not 'bytes'

为什么以及如何修复/编写便携式文件?


我正在Linux上使用Python 3.x:

(py36) dims@calculon:~$ python
Python 3.6.3 |Anaconda, Inc.| (default, Oct 13 2017, 12:02:49)
[GCC 7.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import json
>>> A= b'["c1006","c1007"]'
>>> json.loads(A)
['c1006', 'c1007']

1 个答案:

答案 0 :(得分:0)

为我工作:

The version of the notebook server is: 5.6.0
The server is running on this version of Python:
Python 3.6.6 |Anaconda custom (64-bit)| (default, Jun 28 2018, 11:27:44) [MSC v.1900 64 bit (AMD64)]

A=b'["c1006","c1007"]'
json.loads(A)
  

['c1006','c1007']

检查您的版本,似乎正在运行与Anaconda不同的python版本:

import sys 
sys.version