ai didi

python - .vs 行中不是 'string' 'string' 不在队列中

转载 作者:行者123 更新时间:2023-11-30 22:39:22 24 4
gpt4 key购买 nike

假设有一个像这样的字符串:

my_line = 'this is a line of text\n'

并且想要检查某个单词是否不存在,例如单词 'row' .

使用之间有什么区别:

a) if not 'row' in my_line:

b) if 'row' not in my_line:

在这种情况下,两者完全相同吗?是否存在两者分歧的情况?

最佳答案

它们是相同的,您可以从 dis CPython 字节码输出中看到这一点:

>>> import dis
>>> def f1():
... if not 'row' in my_line: pass
...
>>> def f2():
... if 'row' not in my_line: pass
...
>>> dis.dis(f1)
2 0 LOAD_CONST 1 ('row')
2 LOAD_GLOBAL 0 (my_line)
4 COMPARE_OP 7 (not in)
6 POP_JUMP_IF_FALSE 8
>> 8 LOAD_CONST 0 (None)
10 RETURN_VALUE
>>> dis.dis(f2)
2 0 LOAD_CONST 1 ('row')
2 LOAD_GLOBAL 0 (my_line)
4 COMPARE_OP 7 (not in)
6 POP_JUMP_IF_FALSE 8
>> 8 LOAD_CONST 0 (None)
10 RETURN_VALUE

关于python - .vs 行中不是 'string' 'string' 不在队列中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43181001/

24 4 0
文章推荐: mysql - 如何合并两个表并将它们的值计为一个?
文章推荐: c# - 如何访问子 xml 元素?
文章推荐: c# - 用户选项是/否
文章推荐: python - 根据值选择 pandas 数据框的列
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
全站热门文章
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com