Comment on Python bug: Can assign [] = (), but not () = []parentComments−lmm11yIt's "normal" in python for this to work with integers: >>> "x" * 3 xxx The only weird part (and it's not that weird IMO) is that numpy's "float" can be implicitly coerced to integer.
Comments
It's "normal" in python for this to work with integers:
The only weird part (and it's not that weird IMO) is that numpy's "float" can be implicitly coerced to integer.