如何在python中找到字符串和整数数据

时间:2018-07-07 00:48:08

标签: python string beautifulsoup data-extraction

我想从页面源中找到该数据

"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])

输出包含我要查找的数据,但也包含我不想要的数据混入

1 个答案:

答案 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'])

您应该验证数据字典中是否存在已使用的键,以避免字典键错误