rsokl / Learning_Python

Source material for Python Like You Mean it
https://www.pythonlikeyoumeanit.com/
Other
163 stars 54 forks source link

Numpy Arrays are not Sequences #202

Open sebbyjp opened 6 months ago

sebbyjp commented 6 months ago

Just wanted to bring it to your attention.

You call it a sequence here: https://www.pythonlikeyoumeanit.com/Module2_EssentialsOfPython/SequenceTypes.html but zero sized numpy arrays prohibit arrays from being Sequences.

isinstance(np.array([1,2]), collections.abc.Sequence) also returns False.