我想从页面源中找到该数据
"location": {"latitude": 35.4677026, "longitude": -80.6093396}
当前我正在运行这段代码
floats = re.findall(r"[-+]?\d+\.\d+", str(soup))
for i in range(len(floats)):
if len(floats[i]) > 9:
LatLong.append(floats[i])
输出包含我要查找的数据,但也包含我不想要的数据混入
答案 0 :(得分:1)
import json
string_data = '{"location": {"latitude": 35.4677026, "longitude": -80.6093396}}'
data = json.loads(string_data)
if 'location' in data:
# do something with the data
print(data['location']['latitude'])
print(data['location']['longitude'])
您应该验证数据字典中是否存在已使用的键,以避免字典键错误