Learning_Python
Learning_Python copied to clipboard
Source material for Python Like You Mean it
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.
I'm thinking of translating it in italian. Is there a best practice I should follow, renaming files or anything, or I simply change the content of the .rst/.md files in...
I am new to PLYMI and loaded Anaconda onto my Macbook Pro yesterday. During installation, I was expecting to see the installation option described here: "After the download is complete,...
https://www.pythonlikeyoumeanit.com/Module3_IntroducingNumpy/BasicArrayAttributes.html > An object describing the data type of the elements in the array. Recall that NumPy’s ND-arrays are homogeneous: they can only ***posses*** numbers of a uniform data type.
Closes #204 All spellings of this word look wrong 😖 I like the idea of a NumPy posse though lol
While reading the section on [[Set Operations](https://www.pythonlikeyoumeanit.com/Module2_EssentialsOfPython/DataStructures_III_Sets_and_More.html#Set-operations)](https://www.pythonlikeyoumeanit.com/Module2_EssentialsOfPython/DataStructures_III_Sets_and_More.html#Set-operations), I noticed that while the core set operations like union, intersection, and symmetric difference are well-covered, **some of Python's built-in methods for set...