python 字典,python 读写文件

这里是典型的字典运用实例:

def getStockInfo(lst, stockURL, fpath):
    """
    从百度股票获取个股信息
    获取股票的列表
    根据股票列表,到相关网站获取价格存储url中
    文件保存路径

    在百度中查看网页源代码,查看价格,
    要是我自己写,要怎么获取价格呢?
    首先向每个个股信息发起请求
    """
    for stock in lst:
        url = stockURL + stock + ".html"  # 形成访问个股页面的url
        html = getHTMLText(url)
        """
        解析过程可能出现异常
        """
        try:
            if html == "":
                continue
            infoDict = {}  # 记录返回所有的个股信息
            # 然后用BeautifulSoup库解析网页类型
            soup = BeautifulSoup(html, 'html.parser')
            stockInfo = soup.find('div', attrs={'class': 'stock-bets'})  # 解析发现,股票信息都保存在div标签下

            name = stockInfo.find_all(attrs={'class': "bets-name"})[0]
            infoDict.update({'股票名称': name.text.split()[0]})  # 使用split获得股票对应的完整名称

            keyList = stockInfo.find_all('dt')
            valueList = stockInfo.find_all('dd')
            for i in range(len(keyList)):
                key = keyList[i].text
                val = valueList[i].text
                infoDict[key] = val  # 直接赋值给字典

            with open(fpath, 'a', encoding='utf-8') as f:
                f.write(str(infoDict) + '\n')
        except:
            traceback.print_exc()  # 获得错误信息
            continue
    return ""

定义字典与更新字典

            infoDict = {}  # 记录返回所有的个股信息
            # 然后用BeautifulSoup库解析网页类型
            soup = BeautifulSoup(html, 'html.parser')
            stockInfo = soup.find('div', attrs={'class': 'stock-bets'})  # 解析发现,股票信息都保存在div标签下

            name = stockInfo.find_all(attrs={'class': "bets-name"})[0]
            infoDict.update({'股票名称': name.text.split()[0]})  # 使用split获得股票对应的完整名称

使用update,也说明了字典是可变类型


                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值