Я пытаюсь присоединить строку к списку словарей. Я делаю:
print(site + ', '.join(search_res))
Я получаю сообщение об ошибке: sequence item 0: expected str instance, dict found
search_res = [
{
"book": "Harry Potter",
"rating": "10.0"
},
{
"book": "Lord of The Rings",
"rating": "9.0"
}
]
site = "Fantasy"
Ожидаемый результат:
"Fantasy" , [
{
"book": "Harry Potter",
"rating": "10.0"
},
{
"book": "Lord of The Rings",
"rating": "9.0"
}
]
Как объединить строку всписок словарей без получения ошибки sequence item 0: expected str instance, dict found
1012 *