Notes on the book Fluent Python

Date Tags python

I'm just writing my understanding, or copying & pasting some segments from the book if those sentences are brief and meaningful themselves.

  • What is the so-called "Python data model"?

    It's the way how python organizes data into objects. There're actually two ways for python to organize data, one is called "types …

more ...

Notes on Python

Date Tags python

Ah, I love python. Oh no, it's Python. Here's a memo just for myself, it's quite conceptional, not just a copy from document. It will be updated at any time.

  • What does it mean by "built-in" modules and names?

    It's with respect to the interpreter. Those modules built into the …

more ...


Notes on Installing the Development Version of Scikit-learn

I'm trying to install the development version of scikit-learn on Windows 7. Here's some notes.

About setup.py

In short, python Distutils is responsible for both packaging/distributing packages and installing packages. Document says: First, both developers and installers have the same basic user interface, i.e. the setup script …

more ...