V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  Wincer  ›  全部回复第 29 页 / 共 34 页
回复总数  672
1 ... 21  22  23  24  25  26  27  28  29  30 ... 34  
2018-11-06 17:25:14 +08:00
回复了 yianbin 创建的主题 Blogger 晒博客,希望能找到一些志同道合的朋友~
关于页面的侧栏图片和主页的风格差距好大啊
2018-11-06 16:32:40 +08:00
回复了 mathzhaoliang 创建的主题 算法 出几个烧脑的智力/算法题,顺便聊聊它们背后的数学
第二题是 7 只,2 的 7 次幂大于 100
2018-10-31 18:27:19 +08:00
回复了 Wincer 创建的主题 分享发现 GITHUB 的万圣节的彩蛋?
@lichao0x7cc 谢谢告知
2018-10-31 10:27:16 +08:00
回复了 Wincer 创建的主题 分享发现 GITHUB 的万圣节的彩蛋?
@sfdye 立体的图在哪显示,我怎么找不到😂
2018-10-29 19:14:16 +08:00
回复了 northisland 创建的主题 问与答 请教各位, Python 能实现这种 with 类么?
```python
from contextlib import contextmanager

@contextmanager
def test(will_run=True):
if will_run:
yield 233
else:
return ""

try:
with test(will_run=False) as q:
print(1234)
except RuntimeError:
pass
```
2018-10-28 18:50:43 +08:00
回复了 skyshine725 创建的主题 问与答 python3 怎么取字典里最后一个 key
不要用字典,字典是无序的,用 orderdict
2018-10-24 17:18:25 +08:00
回复了 iloveyouso 创建的主题 程序员 单纯的 CRUD 项目,你会选择 Vue 还是 React?
前面都说 Vue,那我来说一个 react (#滑稽
很多问题都搜不出来,应该是不会出现这种情况的,除非你用的是百度
2018-10-22 09:10:27 +08:00
回复了 beginor 创建的主题 PostgreSQL pg 11 的 fdw 改进明显
挺好的,没记错的话,elasticsearch 的聚合也是先块内聚合再汇总
2018-10-18 16:21:35 +08:00
回复了 coffeemayor 创建的主题 分享创造 Typecho 调取一言 API 方案
@coffeemayor 借楼分享一下我的一言 API,比 cn 源的数目多很多,这是 js 调取:
https://api.itswincer.com/hitokoto/v2/get?encode=js
pycharm 也可以设置 flake8 和 pylint 检测
2018-10-16 19:49:39 +08:00
回复了 miniyao 创建的主题 Python if query,和 if query is not None 有区别吗?
文档里写了: In the context of Boolean operations, and also when expressions are used by
control flow statements, the following values are interpreted as false:
False, None, numeric zero of all types, and empty strings and containers
(including strings, tuples, lists, dictionaries, sets and frozensets). All
other values are interpreted as true. (See the __nonzero__()
special method for a way to change this.)
2018-10-14 11:50:54 +08:00
回复了 reuixiy 创建的主题 分享创造 可能是最简洁 + 最速度的 Hexo NexT 哲学博客!
@Fulcrum 我也记得,好像上一次是楼主说他博客跑分 500 分
2018-10-11 13:34:24 +08:00
回复了 hanxiaomeng 创建的主题 问与答 提问:为什么 Python 不复用所有的不可变对象?
首先 is 运算符是身份运算符,用于比较对象标识。即使构造了两个具有相同内容的对象,他们的标识也不应该相等,这是设计如此。
然后你举的那个字符串的例子,其实只要在字符串中加上一个空格,就会发现这两个字符也不相等了:

```
a = 'a '
b = 'a '
a is b
>>> False
```

那么不加空格为什么会相等呢?这是 CPython 的实现在存储一些小字符串时,会将这些内容分割存放,而字符串一旦长了,也会不相等:

```
a = 'a'*10000
b = 'a'*10000
a is b
>>> False
```

这属于 CPython 的实现细节,与 Python 本身无关。
但无论如何,要比较对象或者字符串相等,不应该用 is,而应该用 ==。
2018-10-04 22:01:28 +08:00
回复了 djyde 创建的主题 分享创造 《我在学校学到的东西》
文章写的不错,已订阅
一楼说的有理,换个实习试试?
1 ... 21  22  23  24  25  26  27  28  29  30 ... 34  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   926 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 53ms · UTC 21:22 · PVG 05:22 · LAX 13:22 · JFK 16:22
Developed with CodeLauncher
♥ Do have faith in what you're doing.