我刚刚在Jupyter Notebook中使用Zillow API阅读了房屋地址的详细信息。我想知道是否存在一种在数据框中显示数据的方法。
with open("./bin/config/zillow_key.conf", 'r') as f:
key = f.readline().replace("\n", "")
address = "379 Melrose Ave, San Francisco, CA"
postal_code = "94127"
data = api.GetSearchResults(key, address, postal_code)