使用json.dumps()方法可以将一个Python数据类型(如字典、列表等)转换成JSON格式的字符串。 python import json python_obj = {'name': 'Bob', 'age': 25, 'city': 'Los Angeles'} json_str = json.dumps(python_obj) print(json_str) # 输出: '{"name": "Bob", "age": 25, "city": "Los A...