Python报错:TypeError: the JSON object must be str, bytes or bytearray, not ‘dict‘

简介: Python报错:TypeError: the JSON object must be str, bytes or bytearray, not ‘dict‘

当我尝试运行以下代码,来练习使用json.loads()和json.dumps()函数时,系统给我报出了这个错误。

import json
data = {"a":1,"b":2,"c":3}
j = json.loads(data)
print(j)
TypeError: the JSON object must be str, bytes or 
  bytearray, not 'dict'

由于data现在是一个字典,只需要用’’'符号将它转换成字符串就可以了。

但要知道loads()和jumps()这两个函数的具体用法:

loads(param)

将文本字符串转换为json对象的函数,其函数名是load string 的缩写,意思是加载字符串。所以其参数param必须要是一个字典型的字符串。且字典的键必须用双引号来包裹。

dumps(param)

将json数据对象转换为文本字符串的函数,其函数名是dump string 的缩写,意思是输出字符串,所以其参数param必须要是json对象,也就是loads()函数返回的数据类型。

目录
相关文章
|
4月前
|
存储 索引 Python
Python中的str类型
Python中的str类型
|
5月前
|
存储 JSON JavaScript
【Python】已完美解决:TypeError: the JSON object must be str, bytes or bytearray, not dict
【Python】已完美解决:TypeError: the JSON object must be str, bytes or bytearray, not dict
308 1
|
4月前
|
TensorFlow API 算法框架/工具
【Tensorflow+keras】解决使用model.load_weights时报错 ‘str‘ object has no attribute ‘decode‘
python 3.6,Tensorflow 2.0,在使用Tensorflow 的keras API,加载权重模型时,报错’str’ object has no attribute ‘decode’
60 0
|
5月前
|
机器学习/深度学习 缓存 安全
Python标准库中的`str`类型有一个`translate()`方法,它用于替换字符串中的字符或字符子集。这通常与`str.maketrans()`方法一起使用,后者创建一个映射表,用于定义哪些字符应该被替换。
Python标准库中的`str`类型有一个`translate()`方法,它用于替换字符串中的字符或字符子集。这通常与`str.maketrans()`方法一起使用,后者创建一个映射表,用于定义哪些字符应该被替换。
|
5月前
|
编解码 开发者 Python
【Python】已解决:SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes in position 2-3: t
【Python】已解决:SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes in position 2-3: t
548 0
|
5月前
|
开发者 Python
【Python】已解决:TypeError: descriptor ‘index‘ for ‘list‘ objects doesn‘t apply to a ‘str‘ object
【Python】已解决:TypeError: descriptor ‘index‘ for ‘list‘ objects doesn‘t apply to a ‘str‘ object
145 0
|
Python
Python 数值类型方法|内建函数的对比汇总 (int bool float complex bytes str)
Python 数值类型方法|内建函数的对比汇总 (int bool float complex bytes str)
125 0
|
存储 编解码 数据安全/隐私保护
[oeasy]python0017_解码_decode_字节序列_bytes_字符串_str
[oeasy]python0017_解码_decode_字节序列_bytes_字符串_str
109 0
[oeasy]python0017_解码_decode_字节序列_bytes_字符串_str
|
Python
Effective Python(3)- 了解 bytes 与 str 的区别
Effective Python(3)- 了解 bytes 与 str 的区别
236 0