5 pandas报存数据

作者: 怂恿的大脑 | 来源:发表于2018-02-01 17:09 被阅读14次
    image image image

    with open 方法

    for 循环写入 点write

    image image

    一译中文官方文档:http://python.usyiyi.cn/

    image image image
    image image

    爬取《小王子》豆瓣短评的数据,并把数据保存为本地的excel表格

    import requests

    from lxml import etree

    url = 'https://book.douban.com/subject/1084336/comments/'

    r = requests.get(url).text

    s = etree.HTML(r)

    file = s.xpath('//div[@class="comment"]/p/text()')

    import pandas as pd

    df = pd.DataFrame(file)

    df.to_excel('pinglun.xlsx')


    image image image

    相关文章

      网友评论

        本文标题:5 pandas报存数据

        本文链接:https://www.haomeiwen.com/subject/glzdzxtx.html