【发布时间】:2022-11-10 22:08:52
【问题描述】:
我正在尝试使用python中的beautifulsoap解析来自网站的数据,最后我从网站中提取数据,所以我想将数据保存在json文件中,但它根据我编写的代码将数据保存如下
json文件
[
{
"collocation": "\nabove average",
"meaning": "more than average, esp. in amount, age, height, weight etc. "
},
{
"collocation": "\nabsolutely necessary",
"meaning": "totally or completely necessary"
},
{
"collocation": "\nabuse drugs",
"meaning": "to use drugs in a way that's harmful to yourself or others"
},
{
"collocation": "\nabuse of power",
"meaning": "the harmful or unethical use of power"
},
{
"collocation": "\naccept (a) defeat",
"meaning": "to accept the fact that you didn't win a game, match, contest, election, etc."
},
我的代码:
import requests
from bs4 import BeautifulSoup
from selenium import webdriver
import pandas as pd
import json
url = "https://www.englishclub.com/ref/Collocations/"
mylist = [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L",
"M",
"N",
"O",
"P",
"Q",
"R",
"S",
"T",
"U",
"V",
"W"
]
list = []
for i in range(23):
result = requests.get(url+mylist[i]+"/", headers=headers)
doc = BeautifulSoup(result.text, "html.parser")
collocations = doc.find_all(class_="linklisting")
for tag in collocations:
case = {
"collocation": tag.a.string,
"meaning": tag.div.string
}
list.append(case)
with open('data.json', 'w', encoding='utf-8') as f:
json.dump(list, f, ensure_ascii=False, indent=4)
但是例如,我想为每个字母创建一个列表,例如,一个列表用于 A,另一个列表用于 B,以便我可以轻松找到哪个字母以哪个字母开头并使用它。我怎样才能做到这一点。正如您在 json 文件中看到的那样,在搭配的开头总是有 \ 我该如何删除它?
【问题讨论】:
-
对于
mylist- 我推荐:list(string.ascii_uppercase)[0:23]在导入string之后 -
搭配总是以换行符
\n开头 - 如果需要,可以很容易地替换或替换为''。 -
你能通过编码来展示我将如何做到这一点@ScottC
标签: python json beautifulsoup