a = b vs a = b * 1

2018-07-06  本文已影响0人  昵称己存在

a = b

a and b will share memory

a = b * 1 equals to a = b.copy()

上一篇 下一篇

猜你喜欢

热点阅读