在搜索引擎中搜索特殊字符
今天无意中看到一个在 Python 将字符串倒序的有趣方法:
1print('abc'[::-1])
2# cba
没弄清楚 [::]
的含义是什么,又不知道在 Python 文档中哪里能找到这个 [::]
的用法说明,于是开始 Google 搜索。
但 Google 默认是直接忽略掉搜索框中的特殊符号的。但 SymbolHound 可以。
这可是专门针对程序员的搜索引擎:
SymbolHound is a search engine that doesn't ignore special characters. This means you can easily search for symbols like &, %, and π. We hope SymbolHound will help programmers find information about their chosen languages and frameworks more easily.
有了 SymbolHound ,就很容易搜索到 [::]
的出处了,原来它叫做:Extends Slices ,是在 Python2.3 版本加入的。
Stackoverflow 的解释更加好懂:reverse a string in Python 。
(全文完)
- 文章ID:2369
- 原文作者:zrong
- 原文链接:https://blog.zengrong.net/post/search-symbol-in-search-engine/
- 版权声明:本作品采用 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 进行许可,非商业转载请注明出处(原文作者,原文链接),商业转载请联系作者获得授权。