- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
看来2 is 2
和 3 is 3
在 python 中总是正确的,一般来说,对整数的任何引用都与对同一整数的任何其他引用相同。同样发生在 None
(即, None is None
)。我知道这不会发生在用户定义的类型或可变类型上。但它有时也会在不可变类型上失败:
>>> () is ()
True
>>> (2,) is (2,)
False
frozenset
s 的工作方式类似于元组。
最佳答案
Python 有一些类型,它保证只有一个实例。这些实例的示例是 None
, NotImplemented
, 和 Ellipsis
.这些(根据定义)是单例,诸如 None is None
之类的东西保证退换True
因为没有办法创建 NoneType
的新实例.
它还提供一些双吨 1 True
, False
2 -- 所有对 True
的引用指向同一个对象。同样,这是因为无法创建 bool
的新实例。 .
以上都是python语言的保证。但是,正如您所注意到的,有些类型(都是不可变的)存储了一些实例以供重用。这是语言允许的,但不同的实现可能会选择使用或不使用此允许 - 取决于它们的优化策略。属于这一类的一些例子是小整数 (-5 -> 255),空 tuple
和空 frozenset
.
最后,Cpython intern
在解析过程中某些不可变对象(immutable对象)...
例如如果您使用 Cpython 运行以下脚本,您将看到它返回 True
:
def foo():
return (2,)
if __name__ == '__main__':
print foo() is foo()
foo
,它看到一个包含其他简单(不可变)文字的元组文字。与其一遍又一遍地创建这个元组(或其等价物),python 只创建一次。由于整个交易是不可变的,因此该对象没有被更改的危险。在一遍又一遍地调用相同的紧密循环的情况下,这对于性能来说可能是一个巨大的胜利。小字符串也被实习。真正的胜利在于字典查找。 Python 可以进行(极快的)指针比较,然后在检查哈希冲突时退回到较慢的字符串比较。由于 Python 的大部分内容都是建立在字典查找上的,因此这对于整个语言来说是一个很大的优化。
True
的引用。 -- 通常你只关心对象是否“真实”——例如如果
if some_instance: ...
将执行分支。但是,我把它放在这里只是为了完整性。
is
可用于比较非单例的事物。一个常见的用途是创建一个哨兵值:
sentinel = object()
item = next(iterable, sentinel)
if items is sentinel:
# iterable exhausted.
_sentinel = object()
def function(a, b, none_is_ok_value_here=_sentinel):
if none_is_ok_value_here is sentinel:
# Treat the function as if `none_is_ok_value_here` was not provided.
is
运算符(operator)。如果你想检查一个值是否等于另一个值(但可能不同),那么使用
==
.详细了解
is
之间的区别和
==
(以及何时使用哪个),请参阅以下帖子之一:
is
运算符时会增加一些困惑)。
import timeit
interned = 'foo'
not_interned = (interned + ' ').strip()
assert interned is not not_interned
d = {interned: 'bar'}
print('Timings for short strings')
number = 100000000
print(timeit.timeit(
'd[interned]',
setup='from __main__ import interned, d',
number=number))
print(timeit.timeit(
'd[not_interned]',
setup='from __main__ import not_interned, d',
number=number))
####################################################
interned_long = interned * 100
not_interned_long = (interned_long + ' ').strip()
d[interned_long] = 'baz'
assert interned_long is not not_interned_long
print('Timings for long strings')
print(timeit.timeit(
'd[interned_long]',
setup='from __main__ import interned_long, d',
number=number))
print(timeit.timeit(
'd[not_interned_long]',
setup='from __main__ import not_interned_long, d',
number=number))
import timeit
def foo_tuple():
return (2, 3, 4)
def foo_list():
return [2, 3, 4]
assert foo_tuple() is foo_tuple()
number = 10000000
t_interned_tuple = timeit.timeit('foo_tuple()', setup='from __main__ import foo_tuple', number=number)
t_list = (timeit.timeit('foo_list()', setup='from __main__ import foo_list', number=number))
print(t_interned_tuple)
print(t_list)
print(t_interned_tuple / t_list)
print('*' * 80)
def tuple_creation(x):
return (x,)
def list_creation(x):
return [x]
t_create_tuple = timeit.timeit('tuple_creation(2)', setup='from __main__ import tuple_creation', number=number)
t_create_list = timeit.timeit('list_creation(2)', setup='from __main__ import list_creation', number=number)
print(t_create_tuple)
print(t_create_list)
print(t_create_tuple / t_create_list)
foo_tuple()
平均花费
foo_list()
时间的40%左右需要。这表明我们确实从这些实习生那里获得了一些加速。节省的时间似乎随着元组变大而增加(创建更长的列表需要更长的时间——元组“创建”需要恒定的时间,因为它已经被创建了)。
def foo_tuple():
return (2,)
def bar_tuple():
return (2,)
def foo_string():
return 'foo'
def bar_string():
return 'foo'
print(foo_tuple() is foo_tuple()) # True
print(foo_tuple() is bar_tuple()) # False
print(foo_string() is bar_string()) # True
关于python - 在 Python 中,两个对象何时相同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36898917/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!