首页 技术 正文
技术 2022年11月15日
0 收藏 332 点赞 3,118 浏览 1825 个字

对 Python 语法不够了解导致的 bug。

`in`

'20' in '11264,6144,4096,3072,2048,1024,300,30'
Out[7]:
True

a_list = '11264,6144,4096,3072,2048,1024,300,30'.split(',')
a_list
Out[10]:

['11264', '6144', '4096', '3072', '2048', '1024', '300', '30']
'20' in a_list
Out[11]:
False

然后我去搜索 python `in`,有很多噪音,因为 `in` 这个词出现太多了。然后想到 Python 自带的 help,于是我在Python shell 中写

help(‘in’)

Membership test operations
**************************
The operators “in” and “not in” test for membership. “x in s”
evaluates to true if *x* is a member of *s*, and false otherwise. “x
not in s” returns the negation of “x in s”. All built-in sequences
and set types support this as well as dictionary, for which “in” tests
whether the dictionary has a given key. For container types such as
list, tuple, set, frozenset, dict, or collections.deque, the
expression “x in y” is equivalent to “any(x is e or x == e for e in
y)”.
For the string and bytes types, “x in y” is true if and only if *x* is
a substring of *y*. An equivalent test is “y.find(x) != -1”. Empty
strings are always considered to be a substring of any other string,
so “”” in “abc”” will return “True”.
For user-defined classes which define the “__contains__()” method, “x
in y” is true if and only if “y.__contains__(x)” is true.
For user-defined classes which do not define “__contains__()” but do
define “__iter__()”, “x in y” is true if some value “z” with “x == z”
is produced while iterating over “y”. If an exception is raised
during the iteration, it is as if “in” raised that exception.
Lastly, the old-style iteration protocol is tried: if a class defines
“__getitem__()”, “x in y” is true if and only if there is a non-
negative integer index *i* such that “x == y[i]”, and all lower
integer indices do not raise “IndexError” exception. (If any other
exception is raised, it is as if “in” raised that exception).
The operator “not in” is defined to have the inverse true value of
“in”.
Related help topics: SEQUENCEMETHODS

出现的解释很有帮助。所以对于 built-in 的关键字或者函数,我们应首先使用自带的 help 进行查询,而不是去谷歌搜索。

引申出  is 与 == 的区别  

5 is 5
Out[16]:
True
5 == 5
Out[17]:
True
nan = float('NaN')
nan is nan
Out[19]:
True
nan == nan
Out[20]:
False

  

参考

python-in-operator-use-cases  

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:8,991
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,505
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,349
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,134
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,766
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,844