IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> [Python36] 01 start -> 正文阅读

[Python知识库][Python36] 01 start

引言

????前段时间里,在各大社媒涌现出很多团队进行宣传并推荐各自Python课程,价格也是不等,内容有好有坏,吸收看个人。有的人可能会感到疑惑,通过一段时间的学习,课程的练习也能做出来,可是对编写程序还是一知半解。

????于是,我将开始开启一个小项目,以项目的形式进行Python相关知识的讲解。在这里,你可以学习到Python的基础知识,也可以通过该课程学习到爬虫的内容。

第一个Python程序

????如果你学习过其他的编程语言,一定会接触到 “Hello,world!” 程序。这个程序也是通往编程世界的通天塔。而在Python里面这个程序仅需要一个语句print("Hello,world!")即可完成。但是不足以完美的介绍出Python的语法特性。

????于是,我将Python的第一个程序调整为 “获取豆瓣读书Top250榜单”,后续内容也将根据这段代码进行深入讲解。

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Edit in main.py
"""获取豆瓣读书top250信息"""

import time
import requests as req
from lxml import etree

start_time = time.perf_counter()    # 使用当前时间节点进行计数,初始化该变量为0
start = 0   # 游标
base_url = "https://book.douban.com/top250?start="  # 基础url,用于对url的拼接
headers = {
    # 请求头
    "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko)"
                  "Chrome/102.0.5005.61 Safari/537.36"
}
result = []

while True:
    url = base_url + str(start)
    # url = f"{base_url}{start}"
    response = req.get(url, headers=headers)
    if response.status_code == 200:
        html = etree.HTML(response.text)
        titles = html.xpath("//tr[@class='item']//a/@title")
        descriptions = html.xpath("//tr[@class='item']//p[@class='pl']/text()")

        if not (titles and descriptions):
            print(f"运行结果为:{result}")
            end_time = time.perf_counter()  # 获取之前对时间节点到此时间节点的时间周期
            print(f"运行时间为:{end_time}")
            break

        for i, title in enumerate(titles):
            desc = descriptions[i].split(" / ")
            memo = {
                "rank": start + i + 1,
                "title": title,
                "author": desc[0],
                "press": desc[-3],
                "published_at": desc[-2],
                "price": desc[-1],
            }
            result.append(memo)
        start += 25
    else:
        print("请求错误")
        break

????通过python main.py运行即可获得相应Top250前25的内容。
????运行结果如下:

运行结果为:[{'rank': 1, 'title': '红楼梦', 'author': '[清] 曹雪芹 著', 'press': '人民文学出版社', 'published_at': '1996-12', 'price': '59.70元'}, {'rank': 2, 'title': '活着', 'author': '余华', 'press': '作家出版社', 'published_at': '2012-8-1', 'price': '20.00元'}, {'rank': 3, 'title': '1984', 'author': '[英] 乔治·奥威尔', 'press': '北京十月文艺出版社', 'published_at': '2010-4-1', 'price': '28.00'}, {'rank': 4, 'title': '百年孤独', 'author': '[哥伦比亚] 加西亚·马尔克斯', 'press': '南海出版公司', 'published_at': '2011-6', 'price': '39.50元'}, {'rank': 5, 'title': '三体全集', 'author': '刘慈欣', 'press': '重庆出版社', 'published_at': '2012-1-1', 'price': '168.00元'}, {'rank': 6, 'title': '飘', 'author': '[美国] 玛格丽特·米切尔', 'press': '译林出版社', 'published_at': '2000-9', 'price': '40.00元'}, {'rank': 7, 'title': '哈利·波特', 'author': 'J.K.罗琳 (J.K.Rowling)', 'press': '人民文学出版社', 'published_at': '2008-12-1', 'price': '498.00元'}, {'rank': 8, 'title': '房思琪的初恋乐园', 'author': '林奕含', 'press': '北京联合出版公司', 'published_at': '2018-2', 'price': '45.00元'}, {'rank': 9, 'title': '三国演义(全二册)', 'author': '[明] 罗贯中', 'press': '人民文学出版社', 'published_at': '1998-05', 'price': '39.50元'}, {'rank': 10, 'title': '动物农场', 'author': '[英] 乔治·奥威尔', 'press': '上海译文出版社', 'published_at': '2007-3', 'price': '10.00元'}, {'rank': 11, 'title': '福尔摩斯探案全集(上中下)', 'author': '[英] 阿·柯南道尔', 'press': '群众出版社', 'published_at': '1981-8', 'price': '53.00元/68.00元'}, {'rank': 12, 'title': '白夜行', 'author': '[日] 东野圭吾', 'press': '南海出版公司', 'published_at': '2013-1-1', 'price': '39.50元'}, {'rank': 13, 'title': '小王子', 'author': '[法] 圣埃克苏佩里', 'press': '人民文学出版社', 'published_at': '2003-8', 'price': '22.00元'}, {'rank': 14, 'title': '天龙八部', 'author': '金庸', 'press': '生活·读书·新知三联书店', 'published_at': '1994-5', 'price': '96.00元'}, {'rank': 15, 'title': '安徒生童话故事集', 'author': '(丹麦)安徒生', 'press': '人民文学出版社', 'published_at': '1997-08', 'price': '25.00元'}, {'rank': 16, 'title': '撒哈拉的故事', 'author': '三毛', 'press': '哈尔滨出版社', 'published_at': '2003-8', 'price': '15.80元'}, {'rank': 17, 'title': '杀死一只知更鸟', 'author': '[美] 哈珀·李', 'press': '译林出版社', 'published_at': '2012-9', 'price': '32.00元'}, {'rank': 18, 'title': '呐喊', 'author': '鲁迅', 'press': '人民文学出版社', 'published_at': '1973-3', 'price': '0.36元'}, {'rank': 19, 'title': '明朝那些事儿(1-9)', 'author': '当年明月', 'press': '中国海关出版社', 'published_at': '2009-4', 'price': '358.20元'}, {'rank': 20, 'title': '沉默的大多数', 'author': '王小波', 'press': '中国青年出版社', 'published_at': '1997-10', 'price': '27.00元'}, {'rank': 21, 'title': '失踪的孩子', 'author': '[意] 埃莱娜·费兰特', 'press': '人民文学出版社', 'published_at': '2018-7', 'price': '62.00元'}, {'rank': 22, 'title': '中国历代政治得失', 'author': '钱穆', 'press': '生活·读书·新知三联书店', 'published_at': '2001', 'price': '12.00元'}, {'rank': 23, 'title': '局外人', 'author': '[法] 阿尔贝·加缪', 'press': '上海译文出版社', 'published_at': '2010-8', 'price': '22.00元'}, {'rank': 24, 'title': '新名字的故事', 'author': '[意] 埃莱娜·费兰特', 'press': '人民文学出版社', 'published_at': '2017-4', 'price': '59.00元'}, {'rank': 25, 'title': '人类简史', 'author': '[以色列] 尤瓦尔·赫拉利', 'press': '中信出版社', 'published_at': '2014-11', 'price': '68.00元'}, {'rank': 26, 'title': '平凡的世界(全三部)', 'author': '路遥', 'press': '人民文学出版社', 'published_at': '2005-1', 'price': '64.00元'}, {'rank': 27, 'title': '围城', 'author': '钱锺书', 'press': '人民文学出版社', 'published_at': '1991-2', 'price': '19.00'}, {'rank': 28, 'title': '笑傲江湖(全四册)', 'author': '金庸', 'press': '生活·读书·新知三联书店', 'published_at': '1994-5', 'price': '76.80元'}, {'rank': 29, 'title': '霍乱时期的爱情', 'author': '[哥伦比亚] 加西亚·马尔克斯', 'press': '南海出版公司', 'published_at': '2012-9-1', 'price': '39.50元'}, {'rank': 30, 'title': '乡土中国', 'author': '费孝通', 'press': '上海人民出版社', 'published_at': '2006-04-01', 'price': '38.00'}, {'rank': 31, 'title': '白鹿原', 'author': '陈忠实', 'press': '人民文学出版社', 'published_at': '2012-9', 'price': '39.00元'}, {'rank': 32, 'title': '野草', 'author': '鲁迅', 'press': '人民文学出版社', 'published_at': '1973-3', 'price': '0.20元'}, {'rank': 33, 'title': '肖申克的救赎', 'author': '[美] 斯蒂芬·金', 'press': '人民文学出版社', 'published_at': '2006-7', 'price': '29.90元'}, {'rank': 34, 'title': '邓小平时代', 'author': '[美] 傅高义', 'press': '生活·读书·新知三联书店', 'published_at': '2013-1', 'price': '88.00元'}, {'rank': 35, 'title': '东方快车谋杀案', 'author': '[英] 阿加莎·克里斯蒂', 'press': '人民文学出版社', 'published_at': '2006-5', 'price': '18.00元'}, {'rank': 36, 'title': '基督山伯爵', 'author': '[法国] 大仲马', 'press': '上海译文出版社', 'published_at': '1991-12-1', 'price': '43.90元'}, {'rank': 37, 'title': '月亮和六便士', 'author': '[英] 毛姆', 'press': '上海译文出版社', 'published_at': '2006-8', 'price': '15.00元'}, {'rank': 38, 'title': '江城', 'author': '[美] 彼得·海斯勒', 'press': '上海译文出版社', 'published_at': '2012-1', 'price': '36.00元'}, {'rank': 39, 'title': '我与地坛', 'author': '史铁生', 'press': '春风文艺出版社', 'published_at': '2002-5', 'price': '25.00元'}, {'rank': 40, 'title': '万历十五年', 'author': '[美] 黄仁宇', 'press': '生活·读书·新知三联书店', 'published_at': '1997-5', 'price': '18.00元'}, {'rank': 41, 'title': '城南旧事', 'author': '林海音 文', 'press': '中国青年出版社', 'published_at': '2003-7', 'price': '16.00元'}, {'rank': 42, 'title': '彷徨', 'author': '鲁迅', 'press': '人民文学出版社', 'published_at': '1973-3', 'price': '0.37元'}, {'rank': 43, 'title': '追风筝的人', 'author': '[美] 卡勒德·胡赛尼', 'press': '上海人民出版社', 'published_at': '2006-5', 'price': '29.00元'}, {'rank': 44, 'title': '艺术的故事', 'author': '[英] 贡布里希 (Sir E.H.Gombrich)', 'press': '广西美术出版社', 'published_at': '2008-04', 'price': '280.00'}, {'rank': 45, 'title': '悉达多', 'author': '[德] 赫尔曼·黑塞', 'press': '天津人民出版社', 'published_at': '2017-1', 'price': '32.00元'}, {'rank': 46, 'title': '卡拉马佐夫兄弟', 'author': '[俄] 费奥多尔·陀思妥耶夫斯基', 'press': '上海译文出版社', 'published_at': '2006-8', 'price': '25.00元'}, {'rank': 47, 'title': '射雕英雄传', 'author': '金庸', 'press': '生活·读书·新知三联书店', 'published_at': '1999-04', 'price': '47.00元'}, {'rank': 48, 'title': '刀锋', 'author': '[英]毛姆', 'press': '上海译文出版社', 'published_at': '2007-3', 'price': '18.00元'}, {'rank': 49, 'title': '寻路中国', 'author': '[美] 彼得·海斯勒', 'press': '上海译文出版社', 'published_at': '2011-1', 'price': '33.00元'}, {'rank': 50, 'title': '献给阿尔吉侬的花束', 'author': '[美] 丹尼尔·凯斯', 'press': '广西师范大学出版社', 'published_at': '2015-4', 'price': '36.00元'}, {'rank': 51, 'title': '罗杰疑案', 'author': '[英] 阿加莎·克里斯蒂', 'press': '新星出版社', 'published_at': '2013-3', 'price': '28.00元'}, {'rank': 52, 'title': '许三观卖血记', 'author': '余华', 'press': '作家出版社', 'published_at': '2012-9', 'price': '24.00元'}, {'rank': 53, 'title': '朝花夕拾', 'author': '鲁迅', 'press': '人民文学出版社', 'published_at': '1973-4', 'price': '0.25元'}, {'rank': 54, 'title': '嫌疑人X的献身', 'author': '[日] 东野圭吾', 'press': '南海出版公司', 'published_at': '2008-9', 'price': '28.00'}, {'rank': 55, 'title': '格林童话全集', 'author': '[德国]格林兄弟', 'press': '人民文学出版社', 'published_at': '1994-11', 'price': '21.45元'}, {'rank': 56, 'title': '故事新编', 'author': '鲁迅', 'press': '人民文学出版社', 'published_at': '1973-12-01', 'price': '0.31 元'}, {'rank': 57, 'title': '树上的男爵', 'author': '[意] 伊塔洛·卡尔维诺', 'press': '译林出版社', 'published_at': '2012-4-1', 'price': '30.00元'}, {'rank': 58, 'title': '无人生还', 'author': '[英] 阿加莎?克里斯蒂', 'press': '人民文学出版社', 'published_at': '2008-3', 'price': '19.00'}, {'rank': 59, 'title': '黄金时代', 'author': '王小波', 'press': '花城出版社', 'published_at': '1999-3', 'price': '19.00元'}, {'rank': 60, 'title': '傲慢与偏见', 'author': '[英] 奥斯丁', 'press': '人民文学出版社', 'published_at': '1993-7', 'price': '13.00元'}, {'rank': 61, 'title': '中国少年儿童百科全书(全四册)', 'author': '林崇德 主编', 'press': '浙江教育出版社', 'published_at': '1991-4', 'price': '168.00元'}, {'rank': 62, 'title': '史记(全十册)', 'author': '司马迁', 'press': '中华书局', 'published_at': '1982-11', 'price': '125.00'}, {'rank': 63, 'title': '悲惨世界(上中下)', 'author': '[法] 雨果', 'press': '人民文学出版社', 'published_at': '1992-6', 'price': '66.00元'}, {'rank': 64, 'title': '历史深处的忧虑', 'author': '林达', 'press': '生活·读书·新知三联书店', 'published_at': '1997-5', 'price': '19.00元'}, {'rank': 65, 'title': '鼠疫', 'author': '[法] 阿尔贝·加缪', 'press': '上海译文出版社', 'published_at': '2013-8', 'price': '34.00元'}, {'rank': 66, 'title': '上帝掷骰子吗', 'author': '曹天元', 'press': '辽宁教育出版社', 'published_at': '2006-1', 'price': '32.00元'}, {'rank': 67, 'title': '永恒的终结', 'author': '[美] 艾萨克·阿西莫夫', 'press': '江苏凤凰文艺出版社', 'published_at': '2014-9', 'price': '32.00元'}, {'rank': 68, 'title': '神雕侠侣', 'author': '金庸', 'press': '生活·读书·新知三联书店', 'published_at': '1994-5', 'price': '76.80元'}, {'rank': 69, 'title': '文学回忆录', 'author': '木心 口述', 'press': '广西师范大学出版社', 'published_at': '2013-1-10', 'price': '98.00元'}, {'rank': 70, 'title': '西游记(全二册)', 'author': '吴承恩', 'press': '人民文学出版社', 'published_at': '2004-8', 'price': '47.20元'}, {'rank': 71, 'title': '诗经', 'author': '孔丘 编订', 'press': '北京出版社', 'published_at': '2006-7', 'price': '19.90元'}, {'rank': 72, 'title': '台北人', 'author': '白先勇', 'press': '广西师范大学出版社', 'published_at': '2010-10', 'price': '38.00元'}, {'rank': 73, 'title': '哭泣的骆驼', 'author': '三毛', 'press': '哈尔滨出版社', 'published_at': '2003-6', 'price': '15.80元'}, {'rank': 74, 'title': '灿烂千阳', 'author': '[美] 卡勒德·胡赛尼', 'press': '上海人民出版社', 'published_at': '2007-9', 'price': '28.00元'}, {'rank': 75, 'title': '一个叫欧维的男人决定去死', 'author': '[瑞典] 弗雷德里克·巴克曼', 'press': '四川文艺出版社', 'published_at': '2015-12', 'price': '35.00元'}, {'rank': 76, 'title': '最好的告别', 'author': '[美] 阿图·葛文德(Atul Gawande)', 'press': '浙江人民出版社', 'published_at': '2015-7-31', 'price': '54.90元'}, {'rank': 77, 'title': '厌女', 'author': '上野千鹤子', 'press': '上海三联书店', 'published_at': '2015-1', 'price': '28.00元'}, {'rank': 78, 'title': '人间词话', 'author': '王国维', 'press': '上海古籍出版社', 'published_at': '1998-12', 'price': '9.80元'}, {'rank': 79, 'title': '窗边的小豆豆', 'author': '[日] 黑柳彻子 著', 'press': '南海出版公司', 'published_at': '2003-1', 'price': '20.00元'}, {'rank': 80, 'title': '呼兰河传', 'author': '萧红', 'press': '百花文艺出版社', 'published_at': '2005-01', 'price': '19.00'}, {'rank': 81, 'title': '看见', 'author': '柴静', 'press': '广西师范大学出版社', 'published_at': '2013-1-1', 'price': '39.80元'}, {'rank': 82, 'title': '唐诗三百首', 'author': '蘅塘退士', 'press': '中华书局', 'published_at': '1984-07-01', 'price': '0.65'}, {'rank': 83, 'title': '浪潮之巅', 'author': '吴军', 'press': '电子工业出版社', 'published_at': '2011-8', 'price': '55.00元'}, {'rank': 84, 'title': '孽子', 'author': '白先勇', 'press': '广西师范大学出版社', 'published_at': '2010.10', 'price': '46.00元'}, {'rank': 85, 'title': '美的历程', 'author': '李泽厚', 'press': '生活·读书·新知三联书店', 'published_at': '2009-7', 'price': '43.00元'}, {'rank': 86, 'title': '道德经', 'author': '黄元吉', 'press': '陕西人民出版社', 'published_at': '1996-10', 'price': '4.50元'}, {'rank': 87, 'title': '爱你就像爱生命', 'author': '王小波', 'press': '上海锦绣文章出版社', 'published_at': '2008-5', 'price': '18.00元'}, {'rank': 88, 'title': '我们仨', 'author': '杨绛', 'press': '生活·读书·新知三联书店', 'published_at': '2003-7', 'price': '18.80元'}, {'rank': 89, 'title': '冬牧场', 'author': '李娟', 'press': '新星出版社', 'published_at': '2012-6', 'price': '29.80元'}, {'rank': 90, 'title': '巨人的陨落', 'author': '[英] 肯·福莱特', 'press': '江苏凤凰文艺出版社', 'published_at': '2016-5-1', 'price': '129.80元'}, {'rank': 91, 'title': '海子的诗', 'author': '海子', 'press': '人民文学出版社', 'published_at': '1999-04', 'price': '15.40'}, {'rank': 92, 'title': '人生的枷锁', 'author': '[英] 毛姆', 'press': '上海译文出版社', 'published_at': '2007-3', 'price': '32.00元'}, {'rank': 93, 'title': '四世同堂', 'author': '老舍', 'press': '北京十月文艺出版社', 'published_at': '2008-07', 'price': '36.00元'}, {'rank': 94, 'title': '教父', 'author': '[美]马里奥·普佐', 'press': '译林出版社', 'published_at': '1997-8', 'price': '23.30元'}, {'rank': 95, 'title': '秋园', 'author': '杨本芬', 'press': '北京联合出版公司', 'published_at': '2020-6', 'price': '38.00元'}, {'rank': 96, 'title': '美丽新世界', 'author': '[英] 赫胥黎', 'press': '上海译文出版社', 'published_at': '2017-6', 'price': '45.00元'}, {'rank': 97, 'title': '斯通纳', 'author': '[美] 约翰·威廉斯', 'press': '上海人民出版社', 'published_at': '2016-1', 'price': '49.00元'}, {'rank': 98, 'title': '离开的,留下的', 'author': '[意] 埃莱娜·费兰特', 'press': '人民文学出版社', 'published_at': '2017-10', 'price': '62.00元'}, {'rank': 99, 'title': '看不见的城市', 'author': '[意] 伊塔洛·卡尔维诺', 'press': '译林出版社', 'published_at': '2012-4', 'price': '25.00元'}, {'rank': 100, 'title': '人生的智慧', 'author': '(德)叔本华', 'press': '上海人民出版社', 'published_at': '2008-10-01', 'price': '28.00元'}, {'rank': 101, 'title': '置身事内', 'author': '兰小欢', 'press': '上海人民出版社', 'published_at': '2021-8', 'price': '65.00元'}, {'rank': 102, 'title': '飞鸟集', 'author': '[印] 罗宾德拉纳德·泰戈尔', 'press': '哈尔滨出版社', 'published_at': '2004-6', 'price': '16.80元'}, {'rank': 103, 'title': '罪与罚', 'author': '[俄] 陀思妥耶夫斯基', 'press': '上海译文出版社', 'published_at': '2006-8', 'price': '23.00元'}, {'rank': 104, 'title': '叫魂', 'author': '[美] 孔飞力', 'press': '生活·读书·新知三联书店 上海三联书店', 'published_at': '2012-5', 'price': '38.00元'}, {'rank': 105, 'title': '鹿鼎记', 'author': '金庸', 'press': '广州出版社 花城出版社', 'published_at': '2008-3', 'price': '108.00元'}, {'rank': 106, 'title': '这些人,那些事', 'author': '吴念真', 'press': '译林出版社', 'published_at': '2011-9', 'price': '28.00元'}, {'rank': 107, 'title': '梦里花落知多少', 'author': '三毛', 'press': '北京十月文艺出版社', 'published_at': '2007-6', 'price': '28.00元'}, {'rank': 108, 'title': '刘擎西方现代思想讲义', 'author': '刘擎', 'press': '新星出版社', 'published_at': '2021-1', 'price': '79.00元'}, {'rank': 109, 'title': '时间简史', 'author': '[英] 史蒂芬·霍金', 'press': '湖南科学技术出版社', 'published_at': '2010-4', 'price': '45.00元'}, {'rank': 110, 'title': '边城', 'author': '沈从文', 'press': '北岳文艺出版社', 'published_at': '2002-4', 'price': '12.00元'}, {'rank': 111, 'title': '陆犯焉识', 'author': '严歌苓', 'press': '作家出版社', 'published_at': '2011-10', 'price': '35.00元'}, {'rank': 112, 'title': '金色梦乡', 'author': '[日] 伊坂幸太郎', 'press': '译林出版社', 'published_at': '2010-9', 'price': '35.00元'}, {'rank': 113, 'title': '王尔德童话', 'author': '[英] 王尔德', 'press': '译林出版社', 'published_at': '2003-6', 'price': '6.00元'}, {'rank': 114, 'title': '你当像鸟飞往你的山', 'author': '[美] 塔拉·韦斯特弗', 'press': '南海出版公司', 'published_at': '2019-10', 'price': '59.00元'}, {'rank': 115, 'title': '受戒', 'author': '汪曾祺', 'press': '漓江出版社', 'published_at': '1987-10', 'price': '3.95元'}, {'rank': 116, 'title': '十万个为什么', 'author': '少年儿童出版社', 'press': '少年儿童出版社', 'published_at': '1962', 'price': '30.00元'}, {'rank': 117, 'title': '小径分岔的花园', 'author': '[阿根廷] 豪·路·博尔赫斯', 'press': '上海译文出版社', 'published_at': '2015-7', 'price': '23.00'}, {'rank': 118, 'title': '昨日的世界', 'author': '[奥] 斯蒂芬·茨威格', 'press': '广西师范大学出版社', 'published_at': '2004-5-1', 'price': '32.00元'}, {'rank': 119, 'title': '失明症漫记', 'author': '[葡] 若泽·萨拉马戈', 'press': '南海出版公司', 'published_at': '2014-2', 'price': '29.50'}, {'rank': 120, 'title': '棋王·树王·孩子王', 'author': '阿城', 'press': '江苏凤凰文艺出版社', 'published_at': '2016-3-1', 'price': '58.00'}, {'rank': 121, 'title': '毛泽东选集 第一卷', 'author': '毛泽东', 'press': '人民出版社', 'published_at': '1991-5', 'price': '40.00元'}, {'rank': 122, 'title': '一个陌生女人的来信', 'author': '[奥] 斯蒂芬·茨威格', 'press': '上海译文出版社', 'published_at': '2007-7', 'price': '20.00元'}, {'rank': 123, 'title': '绿毛水怪', 'author': '王小波', 'press': '时代文艺出版社', 'published_at': '2009-1', 'price': '30.00元'}, {'rank': 124, 'title': '也许你该找个人聊聊', 'author': '[美]洛莉·戈特利布', 'press': '果麦文化/上海文化出版社', 'published_at': '2021-7-28', 'price': '68.00元'}, {'rank': 125, 'title': '故事', 'author': '[美] 罗伯特·麦基', 'press': '天津人民出版社', 'published_at': '2014-9', 'price': '68.00元'}, {'rank': 126, 'title': '绝叫', 'author': '[日] 叶真中显', 'press': '北京联合出版公司', 'published_at': '2020-7', 'price': '58.00元'}, {'rank': 127, 'title': '國史大綱(上下)', 'author': '錢穆', 'press': '商务印书馆', 'published_at': '2013-8', 'price': '76.00元'}, {'rank': 128, 'title': '经济学原理(上下)', 'author': '[美] 曼昆', 'press': '机械工业出版社', 'published_at': '2003-8', 'price': '88.00元'}, {'rank': 129, 'title': '克莱因壶', 'author': '[日]冈岛二人', 'press': '化学工业出版社', 'published_at': '2019-9', 'price': '48.00元'}, {'rank': 130, 'title': '人间草木', 'author': '汪曾祺', 'press': '江苏文艺出版社', 'published_at': '2005-01', 'price': '20.00元'}, {'rank': 131, 'title': '茶馆', 'author': '老舍', 'press': '人民文学出版社', 'published_at': '2002-1', 'price': '9.80元'}, {'rank': 132, 'title': '面纱', 'author': '(英)W.萨默塞特·毛姆', 'press': '重庆出版社', 'published_at': '2012-05-01', 'price': '32.00元'}, {'rank': 133, 'title': '爱的艺术', 'author': '[美] 艾·弗洛姆', 'press': '上海译文出版社', 'published_at': '2008-4', 'price': '15.00元'}, {'rank': 134, 'title': '史蒂夫·乔布斯传', 'author': '[美] 沃尔特·艾萨克森', 'press': '中信出版社', 'published_at': '2011-10-24', 'price': '68.00元'}, {'rank': 135, 'title': '海的女儿', 'author': '安徒生', 'press': '上海译文出版社', 'published_at': '1978年6月', 'price': '0.43'}, {'rank': 136, 'title': '阿勒泰的角落', 'author': '李娟', 'press': '万卷出版公司', 'published_at': '2010-6', 'price': '25.00元'}, {'rank': 137, 'title': '苏菲的世界', 'author': '[挪] 乔斯坦·贾德', 'press': '作家出版社', 'published_at': '2007-10', 'price': '26.00元'}, {'rank': 138, 'title': '万水千山走遍', 'author': '三毛', 'press': '哈尔滨出版社', 'published_at': '2003-08', 'price': '13.80'}, {'rank': 139, 'title': '德米安', 'author': '[德] 赫尔曼·黑塞', 'press': '上海人民出版社', 'published_at': '2009-3', 'price': '25.00元'}, {'rank': 140, 'title': '桶川跟踪狂杀人事件', 'author': '[日] 清水洁', 'press': '四川人民出版社', 'published_at': '2021-2', 'price': '45.00元'}, {'rank': 141, 'title': '温柔的夜', 'author': '三毛', 'press': '北京十月文艺出版社', 'published_at': '2007-5', 'price': '28.00元'}, {'rank': 142, 'title': '不能承受的生命之轻', 'author': '米兰·昆德拉', 'press': '上海译文出版社', 'published_at': '2010-8', 'price': '29.00元'}, {'rank': 143, 'title': '我的天才女友', 'author': '[意] 埃莱娜·费兰特', 'press': '人民文学出版社', 'published_at': '2017-1', 'price': '42.00元'}, {'rank': 144, 'title': '我不知道该说什么,关于死亡还是爱情', 'author': '[白俄] S·A·阿列克谢耶维奇', 'press': '花城出版社', 'published_at': '2014-6-15', 'price': '34.80元'}, {'rank': 145, 'title': '霸王别姬', 'author': '李碧华', 'press': '人民文学出版社', 'published_at': '1999-1', 'price': '10.20元'}, {'rank': 146, 'title': '球状闪电', 'author': '刘慈欣', 'press': '四川科学技术出版社', 'published_at': '2005-6', 'price': '22.00元'}, {'rank': 147, 'title': '我也有一个梦想', 'author': '林达', 'press': '生活·读书·新知三联书店', 'published_at': '2004-08', 'price': '25.00元'}, {'rank': 148, 'title': '长日将尽', 'author': '[英] 石黑一雄', 'press': '上海译文出版社', 'published_at': '2018-5', 'price': '48.00元'}, {'rank': 149, 'title': '古文观止', 'author': '吴楚材', 'press': '中华书局', 'published_at': '1987-1-1', 'price': '21.00元'}, {'rank': 150, 'title': '亮剑', 'author': '都梁', 'press': '解放军文艺出版社', 'published_at': '2005-3', 'price': '28.00元'}, {'rank': 151, 'title': '13 67', 'author': '陳浩基', 'press': '皇冠文化出版有限公司', 'published_at': '2014-6-9', 'price': 'NT$350'}, {'rank': 152, 'title': '一句顶一万句', 'author': '刘震云', 'press': '长江文艺出版社', 'published_at': '2009-3', 'price': '29.80'}, {'rank': 153, 'title': '倾城之恋', 'author': '张爱玲', 'press': '北京十月文艺出版社', 'published_at': '2006-12', 'price': '29.80元'}, {'rank': 154, 'title': '社会心理学', 'author': '[美] 戴维·迈尔斯', 'press': '人民邮电出版社', 'published_at': '2006-1', 'price': '68.00元'}, {'rank': 155, 'title': '海风中失落的血色馈赠', 'author': '[加拿大] 阿利斯泰尔·麦克劳德', 'press': '上海文艺出版社', 'published_at': '2015-6-1', 'price': 'CNY 20.00'}, {'rank': 156, 'title': '我的阿勒泰', 'author': '李娟', 'press': '云南人民出版社', 'published_at': '2010-7', 'price': '22.00元'}, {'rank': 157, 'title': '强风吹拂', 'author': '三浦紫苑', 'press': '广西师范大学出版社', 'published_at': '2015-1-1', 'price': '39.00元'}, {'rank': 158, 'title': '少年凯歌', 'author': '陈凯歌', 'press': '人民文学出版社', 'published_at': '2001-6', 'price': '10.00元'}, {'rank': 159, 'title': '麦琪的礼物', 'author': '[美] 欧·亨利', 'press': '上海社会科学院出版社', 'published_at': '2003-7', 'price': '25.00元'}, {'rank': 160, 'title': '孩子你慢慢来', 'author': '龙应台', 'press': '生活·读书·新知三联书店', 'published_at': '2009-12-1', 'price': '28.00元'}, {'rank': 161, 'title': '浮生六记', 'author': '(清)沈复', 'press': '人民文学出版社', 'published_at': '1999-1', 'price': '38'}, {'rank': 162, 'title': '天朝的崩溃', 'author': '茅海建', 'press': '生活·读书·新知三联书店', 'published_at': '2005-7', 'price': '32.00元'}, {'rank': 163, 'title': '情书', 'author': '[日] 岩井俊二', 'press': '天津人民出版社', 'published_at': '2004-7', 'price': '18.00元'}, {'rank': 164, 'title': '渴望生活', 'author': '[美] 欧文·斯通', 'press': '北京十月文艺出版社', 'published_at': '2008-4', 'price': '29.80元'}, {'rank': 165, 'title': '九州·缥缈录', 'author': '江南', 'press': '新世界出版社', 'published_at': '2005-6', 'price': '20.00元'}, {'rank': 166, 'title': '万物有灵且美', 'author': '[英] 吉米·哈利', 'press': '中国城市出版社', 'published_at': '2010-1', 'price': '28.80'}, {'rank': 167, 'title': '送你一颗子弹', 'author': '刘瑜', 'press': '上海三联书店', 'published_at': '2010-1', 'price': '25.00元'}, {'rank': 168, 'title': '遥远的向日葵地', 'author': '李娟', 'press': '花城出版社', 'published_at': '2017-11', 'price': '38.00元'}, {'rank': 169, 'title': '尼罗河上的惨案', 'author': '[英] 阿加莎·克里斯蒂', 'press': '人民文学出版社', 'published_at': '2006-5', 'price': '22.00元'}, {'rank': 170, 'title': '草房子', 'author': '曹文轩', 'press': '江苏少年儿童出版社', 'published_at': '2009-6', 'price': '18.00元'}, {'rank': 171, 'title': '安娜·卡列尼娜', 'author': '[俄] 列夫·托尔斯泰', 'press': '上海文艺出版社', 'published_at': '2007-8', 'price': '37.00元'}, {'rank': 172, 'title': '银河系漫游指南', 'author': '[英] 道格拉斯·亚当斯', 'press': '四川科学技术出版社', 'published_at': '2005-6', 'price': '16.00元'}, {'rank': 173, 'title': '罗生门', 'author': '[日] 芥川龙之介', 'press': '上海译文出版社', 'published_at': '2008-7', 'price': '12.00元'}, {'rank': 174, 'title': '野火集', 'author': '龙应台', 'press': '文汇出版社', 'published_at': '2005-8', 'price': '25.00元'}, {'rank': 175, 'title': '半生缘', 'author': '张爱玲', 'press': '北京十月文艺出版社', 'published_at': '2006-12', 'price': '28.00元'}, {'rank': 176, 'title': '额尔古纳河右岸', 'author': '迟子建', 'press': '北京十月文艺出版社', 'published_at': '2005-12-1', 'price': '29.00元'}, {'rank': 177, 'title': '倚天屠龙记', 'author': '金庸', 'press': '生活·读书·新知三联书店', 'published_at': '1999-04', 'price': '47.00'}, {'rank': 178, 'title': '恶意', 'author': '[日] 东野圭吾', 'press': '南海出版公司', 'published_at': '2016-11-1', 'price': '39.50元'}, {'rank': 179, 'title': '理想国', 'author': '[古希腊] 柏拉图', 'press': '商务印书馆', 'published_at': '1986-8', 'price': '28.00元'}, {'rank': 180, 'title': '雨季不再来', 'author': '三毛', 'press': '北京十月文艺出版社', 'published_at': '2007-7', 'price': '28.00元'}, {'rank': 181, 'title': '枪炮、病菌与钢铁', 'author': '[美] 贾雷德·戴蒙德', 'press': '上海译文出版社', 'published_at': '2006-4-1', 'price': '45.00元'}, {'rank': 182, 'title': '一桩事先张扬的凶杀案', 'author': '[哥伦比亚] 加西亚·马尔克斯', 'press': '南海出版公司', 'published_at': '2013-6', 'price': '25.00元'}, {'rank': 183, 'title': '你好,旧时光(上 下)', 'author': '八月长安', 'press': '新世界出版社', 'published_at': '2009-12', 'price': '39.80元'}, {'rank': 184, 'title': '激荡三十年', 'author': '吴晓波', 'press': '中信出版社', 'published_at': '2008-7-1', 'price': '32.00元'}, {'rank': 185, 'title': '当呼吸化为空气', 'author': '[美] 保罗·卡拉尼什', 'press': '浙江文艺出版社', 'published_at': '2016-12', 'price': '48.00元'}, {'rank': 186, 'title': '雷雨', 'author': '曹禺', 'press': '人民文学出版社', 'published_at': '1999-05', 'price': '9.20'}, {'rank': 187, 'title': '孙子兵法', 'author': '孙武', 'press': '上海古籍出版社', 'published_at': '2006-7', 'price': '20.00元'}, {'rank': 188, 'title': '2001:太空漫游', 'author': '[英] 阿瑟·克拉克', 'press': '上海文艺出版社', 'published_at': '2019-5-10', 'price': '62.00元'}, {'rank': 189, 'title': '最好的我们', 'author': '八月长安', 'press': '湖南文艺出版社', 'published_at': '2013-8-5', 'price': '55'}, {'rank': 190, 'title': '目送', 'author': '龙应台', 'press': '生活·读书·新知三联书店', 'published_at': '2009-10', 'price': '39.00元'}, {'rank': 191, 'title': '冰与火之歌', 'author': '乔治·马丁', 'press': '重庆出版社', 'published_at': '2013-10-1', 'price': '330.00元'}, {'rank': 192, 'title': '银河帝国:基地七部曲', 'author': '[美] 艾萨克·阿西莫夫', 'press': '江苏凤凰文艺出版社', 'published_at': '2015-10-1', 'price': '328.00元'}, {'rank': 193, 'title': '顾城的诗', 'author': '顾城', 'press': '人民文学出版社', 'published_at': '1998-12', 'price': '20.00'}, {'rank': 194, 'title': '一千零一夜', 'author': '纳训', 'press': '人民文学出版社', 'published_at': '2003-01', 'price': '22.00'}, {'rank': 195, 'title': '解忧杂货店', 'author': '[日] 东野圭吾', 'press': '南海出版公司', 'published_at': '2014-5', 'price': '39.50元'}, {'rank': 196, 'title': '水浒传(全二册)', 'author': '[明] 施耐庵', 'press': '人民文学出版社', 'published_at': '1997-1', 'price': '50.60元'}, {'rank': 197, 'title': '亲爱的安德烈', 'author': '龙应台', 'press': '人民文学出版社', 'published_at': '2008-12', 'price': '26.00'}, {'rank': 198, 'title': '你一生的故事', 'author': '[美] 特德·姜', 'press': '译林出版社', 'published_at': '2015-5', 'price': '36.00元'}, {'rank': 199, 'title': '荒原狼', 'author': '[德]赫尔曼·黑塞', 'press': '上海译文出版社', 'published_at': '2008-7', 'price': '13.00'}, {'rank': 200, 'title': '鹿川有许多粪', 'author': '李沧东', 'press': '武汉大学出版社', 'published_at': '2021-8', 'price': '58.00元'}, {'rank': 201, 'title': '总统是靠不住的', 'author': '林达', 'press': '生活·读书·新知三联书店', 'published_at': '2004-08', 'price': '21.80'}, {'rank': 202, 'title': '论语', 'author': '刘胜利', 'press': '中华书局', 'published_at': '2006-12', 'price': '9.80元'}, {'rank': 203, 'title': '认识电影', 'author': '[美] 路易斯·贾内梯', 'press': '世界图书出版公司', 'published_at': '2007-11', 'price': '68.00元'}, {'rank': 204, 'title': '众病之王', 'author': '[美] 悉达多·穆克吉', 'press': '中信出版社', 'published_at': '2013-2', 'price': '42.00元'}, {'rank': 205, 'title': '上学记', 'author': '何兆武 口述', 'press': '生活·读书·新知三联书店', 'published_at': '2006-8', 'price': '19.80元'}, {'rank': 206, 'title': '全球通史', 'author': '(美) 斯塔夫里阿诺斯', 'press': '北京大学出版社', 'published_at': '2012-2-1', 'price': '168.00元'}, {'rank': 207, 'title': '象棋的故事', 'author': '[奥] 斯蒂芬·茨威格', 'press': '上海译文出版社', 'published_at': '2007-7', 'price': '23.00元'}, {'rank': 208, 'title': '天生有罪', 'author': '[南非] 特雷弗·诺亚', 'press': '北京联合出版公司', 'published_at': '2018-2-1', 'price': '58.00'}, {'rank': 209, 'title': '火星救援', 'author': '[美] 安迪·威尔', 'press': '译林出版社', 'published_at': '2015-10', 'price': '38.00'}, {'rank': 210, 'title': '雕刻时光', 'author': '[苏] 安德烈·塔可夫斯基', 'press': '南海出版公司', 'published_at': '2016-5', 'price': '45.00元'}, {'rank': 211, 'title': '荆棘鸟', 'author': '[澳] 考琳·麦卡洛', 'press': '译林出版社', 'published_at': '1998-7', 'price': '28.00元'}, {'rank': 212, 'title': '庄子', 'author': '孙通海 译注', 'press': '中华书局', 'published_at': '2007-04', 'price': '20.00元'}, {'rank': 213, 'title': '青铜时代', 'author': '王小波', 'press': '花城出版社', 'published_at': '1997-5', 'price': '29.00元'}, {'rank': 214, 'title': '中国哲学简史', 'author': '冯友兰', 'press': '新世界出版社', 'published_at': '2004-1', 'price': '38.00元'}, {'rank': 215, 'title': '正见', 'author': '宗萨蒋扬钦哲仁波切', 'press': '中国友谊出版公司', 'published_at': '2007-1', 'price': '25.00元'}, {'rank': 216, 'title': '繁花', 'author': '金宇澄', 'press': '上海文艺出版社', 'published_at': '2013-3', 'price': '48.00元'}, {'rank': 217, 'title': '现代艺术150年', 'author': '[英] 威尔·贡培兹', 'press': '广西师范大学出版社', 'published_at': '2017-3-1', 'price': '65.00元'}, {'rank': 218, 'title': '从一到无穷大', 'author': '[美] G. 伽莫夫', 'press': '科学出版社', 'published_at': '2002-11', 'price': '29.00元'}, {'rank': 219, 'title': '规训与惩罚', 'author': '[法] 米歇尔·福柯', 'press': '生活·读书·新知三联书店', 'published_at': '2003-1', 'price': '21.80元'}, {'rank': 220, 'title': '毛姆短篇小说精选集', 'author': '[英] 威廉·萨默塞特·毛姆', 'press': '译林出版社', 'published_at': '2012-11', 'price': '36.00元'}, {'rank': 221, 'title': '此生未完成', 'author': '于娟', 'press': '湖南科学技术出版社', 'published_at': '2011-5', 'price': '26.00元'}, {'rank': 222, 'title': '金锁记', 'author': '张爱玲', 'press': '哈尔滨出版社', 'published_at': '2005-6', 'price': '13.5元'}, {'rank': 223, 'title': '香水', 'author': '[德] 帕·聚斯金德', 'press': '上海译文出版社', 'published_at': '2009-6', 'price': '25.00元'}, {'rank': 224, 'title': '了不起的盖茨比', 'author': '[美] 斯科特·菲茨杰拉德', 'press': '南海出版公司', 'published_at': '2012-5', 'price': '25.00元'}, {'rank': 225, 'title': '二手时间', 'author': '[白俄] S. A. 阿列克谢耶维奇', 'press': '中信出版社', 'published_at': '2016-1', 'price': '55.00元'}, {'rank': 226, 'title': '夏洛的网', 'author': '[美] E.B.怀特', 'press': '上海译文出版社', 'published_at': '2004-5', 'price': '17.00元'}, {'rank': 227, 'title': '骆驼祥子', 'author': '老舍', 'press': '人民文学出版社', 'published_at': '2000-3-1', 'price': '12.00'}, {'rank': 228, 'title': '步履不停', 'author': '[日] 是枝裕和', 'press': '北京联合出版公司', 'published_at': '2017-5', 'price': '36.80元'}, {'rank': 229, 'title': '从零开始的女性主义', 'author': '[日本] 上野千鹤子', 'press': '北京联合出版公司', 'published_at': '2021-9', 'price': '52.00元'}, {'rank': 230, 'title': '如彗星划过夜空', 'author': '林达', 'press': '生活·读书·新知三联书店', 'published_at': '2006-3', 'price': '21.00元'}, {'rank': 231, 'title': '黑客与画家', 'author': '[美] Paul Graham', 'press': '人民邮电出版社', 'published_at': '2011-4', 'price': '49.00元'}, {'rank': 232, 'title': '哈姆莱特', 'author': '[英] 莎士比亚', 'press': '人民文学出版社', 'published_at': '2001-1', 'price': '7.00元'}, {'rank': 233, 'title': '不存在的骑士', 'author': '[意] 伊塔洛·卡尔维诺', 'press': '译林出版社', 'published_at': '2012-4', 'price': '22.00元'}, {'rank': 234, 'title': '民主的细节', 'author': '刘瑜', 'press': '上海三联书店', 'published_at': '2009-6', 'price': '25.00'}, {'rank': 235, 'title': '时间的秩序', 'author': '[意] 卡洛·罗韦利', 'press': '湖南科学技术出版社', 'published_at': '2019-6', 'price': '56.00元'}, {'rank': 236, 'title': '牡丹亭', 'author': '汤显祖', 'press': '人民文学出版社', 'published_at': '1963-4-1', 'price': '14.50元'}, {'rank': 237, 'title': '张爱玲文集', 'author': '张爱玲', 'press': '安徽文艺出版社', 'published_at': '1992年', 'price': '45元'}, {'rank': 238, 'title': '稻草人手记', 'author': '三毛', 'press': '北京十月文艺出版社', 'published_at': '2009-3', 'price': '18.00元'}, {'rank': 239, 'title': '给青年诗人的信', 'author': '[奥] 里尔克', 'press': '雅众文化/云南人民出版社', 'published_at': '2015-12', 'price': '29.00元'}, {'rank': 240, 'title': '会饮篇', 'author': '[古希腊] 柏拉图', 'press': '商务印书馆', 'published_at': '2013-1', 'price': '12.00元'}, {'rank': 241, 'title': '消失的13级台阶', 'author': '[日] 高野和明', 'press': '上海文艺出版社', 'published_at': '2020-5-15', 'price': '42.00元'}, {'rank': 242, 'title': '黑箱', 'author': '[日]伊藤诗织', 'press': '雅众文化/中信出版集团', 'published_at': '2019-4', 'price': '48.00元'}, {'rank': 243, 'title': '被讨厌的勇气', 'author': '岸见一郎', 'press': '机械工业出版社', 'published_at': '2015-3-1', 'price': '39.8'}, {'rank': 244, 'title': '狂热分子', 'author': '[美] 埃里克·霍弗', 'press': '广西师范大学出版社', 'published_at': '2011-6', 'price': '34.00元'}, {'rank': 245, 'title': '如父如子', 'author': '[日] 是枝裕和', 'press': '湖南文艺出版社', 'published_at': '2018-4', 'price': '49.80'}, {'rank': 246, 'title': '显微镜下的大明', 'author': '马伯庸', 'press': '湖南文艺出版社', 'published_at': '2019-1', 'price': '52.00元'}, {'rank': 247, 'title': '金阁寺', 'author': '[日] 三岛由纪夫', 'press': '上海译文出版社', 'published_at': '2009-1', 'price': '24.00'}, {'rank': 248, 'title': '社会契约论', 'author': '[法] 卢梭', 'press': '商务印书馆', 'published_at': '2003-2-1', 'price': '18.00元'}, {'rank': 249, 'title': '佐贺的超级阿嬷', 'author': '[日] 岛田洋七', 'press': '南海出版公司', 'published_at': '2007-3', 'price': '20.00元'}, {'rank': 250, 'title': '分成两半的子爵', 'author': '[意] 伊塔洛·卡尔维诺', 'press': '译林出版社', 'published_at': '2012-4-1', 'price': '20.00元'}, {'rank': 251, 'title': '牧羊少年奇幻之旅', 'author': '[巴西] 保罗·柯艾略', 'press': '南海出版公司', 'published_at': '2009-3-1', 'price': '25.00元'}, {'rank': 252, 'title': '巨流河', 'author': '齐邦媛', 'press': '生活·读书·新知三联书店', 'published_at': '2010-10', 'price': '39.00元'}, {'rank': 253, 'title': '社会性动物', 'author': '埃利奥特·阿伦森Elliot Aronson', 'press': '华东师范大学出版社', 'published_at': '2007-12', 'price': '45.00元'}, {'rank': 254, 'title': '人类的群星闪耀时', 'author': '[奥] 斯蒂芬·茨威格', 'press': '广西师范大学出版社', 'published_at': '2004-8', 'price': '18.00元'}, {'rank': 255, 'title': '长袜子皮皮', 'author': '[瑞典] 阿斯特丽德·林格伦', 'press': '中国少年儿童出版社', 'published_at': '1999-3', 'price': '17.80元'}, {'rank': 256, 'title': '亲密关系(第5版)', 'author': '[美] 罗兰·米勒', 'press': '人民邮电出版社', 'published_at': '2011-1-1', 'price': '68.00元'}, {'rank': 257, 'title': '海底两万里', 'author': '[法国] 儒尔·凡尔纳', 'press': '译林出版社', 'published_at': '2002-9', 'price': '19.50元'}, {'rank': 258, 'title': '别闹了,费曼先生', 'author': '[美] 理查德·费曼', 'press': '生活·读书·新知三联书店', 'published_at': '1997-12', 'price': '22.00元'}, {'rank': 259, 'title': '老人与海', 'author': '[美]海明威', 'press': '上海译文出版社', 'published_at': '1999-10', 'price': '8.20元'}, {'rank': 260, 'title': '世界尽头与冷酷仙境', 'author': '[日] 村上春树', 'press': '上海译文出版社', 'published_at': '2002-12', 'price': '23.00元'}]
运行时间为:4.174181083

小提示
????若是直接运行可能会报错“ModuleNotFound的错误”。
????在运行之前,请使用命令行运行"pip install requests" 和 “pip install lxml”

????其次,本段程序运行时间为4.17S,使用机器为Macbook Air(M1),若使用其他机器可能有些出入。

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-06-29 19:00:05  更:2022-06-29 19:03:03 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年4日历 -2024/4/27 5:53:17-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码