V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  ml1344677  ›  全部回复第 9 页 / 共 16 页
回复总数  302
1  2  3  4  5  6  7  8  9  10 ... 16  
2019-04-28 13:36:39 +08:00
回复了 darouwan 创建的主题 职场话题 拿到 Google 的 offer 了~
@darouwan 唉 牛逼 望其项背
2019-04-28 13:31:34 +08:00
回复了 darouwan 创建的主题 职场话题 拿到 Google 的 offer 了~
环球金融中心吗- - 可能在我们楼上或楼下 我入职就出差 还不知道 google 在这栋。。。
都是干货
2019-04-28 09:58:58 +08:00
回复了 houlin 创建的主题 职场话题 入职半月被领导开除,原因。。
@houlin 没签劳动合同双倍赔偿
2019-04-25 12:53:07 +08:00
回复了 Northxw 创建的主题 Python 花式反爬之某众点评网
@PP 高德的反爬从来不会限制你 IP 对服务器的访问,我需要抓取的数据里面有一个 list,顺序很重要。高德的反爬是将这个 list 的排序打乱,而你又要花计算成本去计算这个 list 是否正确。所以根本不是反爬虫,而增加了爬虫成本。
2019-04-25 12:25:21 +08:00
回复了 Northxw 创建的主题 Python 花式反爬之某众点评网
@dcalsky 所以 cookie 池出现了
2019-04-23 12:23:28 +08:00
回复了 ml1344677 创建的主题 程序员 今天是世界读书日 我还是没抢到当当的券
@DJQTDJ 喜欢实体书 还能垫显示器 kindle 只能盖泡面
2019-04-23 11:16:42 +08:00
回复了 ml1344677 创建的主题 程序员 今天是世界读书日 我还是没抢到当当的券
@DJQTDJ 我一般是 买了=读了 党 纯属爱好
2019-04-23 11:15:59 +08:00
回复了 ml1344677 创建的主题 程序员 今天是世界读书日 我还是没抢到当当的券
@mimzy -80 的也没了 只有-60 的 但是算一下还是当当划算啊 甚至想买本 python flask 的狗书垫显示器都不参加活动 好像只有贵的的参加
2019-04-23 10:41:34 +08:00
回复了 ml1344677 创建的主题 程序员 今天是世界读书日 我还是没抢到当当的券
@y051313 也没有经常啊。。但是注册时间确实非常长了
2019-04-23 10:40:59 +08:00
回复了 ml1344677 创建的主题 程序员 今天是世界读书日 我还是没抢到当当的券
@xiaomingVTEX 当当 100-50 这个券是 实付 300-100 所以你可以用 200 块钱 买到 600 的书。然后我比了一下价格,还是当当实惠。
2019-04-23 10:40:52 +08:00
回复了 ml1344677 创建的主题 程序员 今天是世界读书日 我还是没抢到当当的券
@zarte 当当 100-50 这个券是 实付 300-100 所以你可以用 200 块钱 买到 600 的书。然后我比了一下价格,还是当当实惠。
I asked this question to core developer Raymond Hettinger in 2013 and the key to his answer was a quote from the Zen of Python: “ practicality beats purity ”. In “ How special methods are used ” on page 8 I described how len(x) runs very fast when x is an instance of a built-in type. No method is called for the built-in objects of CPython: the length is simply read from a field in a C struct. Getting the number of items in a collection is a common operation and must work efficiently for such basic and diverse types as str, list, memoryview etc. In other words, len is not called as a method because it gets special treatment as part of the Python Data Model, just like abs. But thanks to the special method __len__ you can also make len work with your own custom objects. This is fair compromise between the need for efficient built-in objects and the consistency of the language. Also from the Zen of Python: “ Special cases aren ’ t special enough to break the rules.”
------《 Fluent Python 》
1  2  3  4  5  6  7  8  9  10 ... 16  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3046 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 30ms · UTC 14:13 · PVG 22:13 · LAX 06:13 · JFK 09:13
Developed with CodeLauncher
♥ Do have faith in what you're doing.