news_dict[article_id] = {
"article_date_timestamp": article_date_timestamp,
"article_title": article_title,
"article_url": article_url,
"article_desc": article_desc
}
with open("news_dict.txt", 'w') as file:
json.dump(news_dict, file, indent=4, ensure_ascii=False)
json条目不起作用。
1条答案
按热度按时间5cnsuln71#
我已经做了一个简单的解决方案,它基于你的代码片段工作。你可以试试这个。我已经在你的代码中添加了
json_dump()