gitextract_omcyvnxe/ ├── LICENSE ├── README.md ├── colab/ │ ├── 1/ │ │ ├── 1-0.ipynb │ │ ├── 1-1.ipynb │ │ ├── 1-2.ipynb │ │ ├── 1-3.ipynb │ │ └── 1-4.ipynb │ ├── 2/ │ │ ├── 2-1.ipynb │ │ ├── 2-2.ipynb │ │ └── 2-3.ipynb │ ├── 3/ │ │ ├── 3-1.ipynb │ │ ├── 3-2.ipynb │ │ └── 3-3.ipynb │ ├── 4/ │ │ ├── 4-1.ipynb │ │ ├── 4-2.ipynb │ │ ├── 4-3.ipynb │ │ ├── sample.txt │ │ ├── shift_jis.txt │ │ ├── test.txt │ │ ├── text/ │ │ │ └── novel.txt │ │ └── utf-8.txt │ ├── 5/ │ │ ├── 5-1.ipynb │ │ ├── 5-2.ipynb │ │ ├── 5-3.ipynb │ │ └── factorial.py │ ├── 6/ │ │ ├── 6-1.ipynb │ │ ├── 6-2.ipynb │ │ ├── 6-3.ipynb │ │ └── jugemu.txt │ ├── 7/ │ │ ├── 7-1.ipynb │ │ ├── 7-2.ipynb │ │ └── iris.csv │ ├── LICENSE │ ├── appendix/ │ │ ├── 1-jupyter-notebook.ipynb │ │ ├── 2-set.ipynb │ │ ├── 3-recursion.ipynb │ │ ├── 3-visualization.ipynb │ │ ├── 4-csv.ipynb │ │ ├── 5-bokeh.ipynb │ │ ├── 5-command.ipynb │ │ ├── 5-matplotlib.ipynb │ │ ├── 5-re.ipynb │ │ ├── B1S.xml │ │ ├── argsprint.py │ │ ├── sample.py │ │ ├── sin.html │ │ ├── small.csv │ │ ├── text-sample.txt │ │ ├── tokyo-july-temps.csv │ │ └── tokyo-temps.csv │ ├── index.ipynb │ └── index_of_terms.ipynb └── docs/ ├── .buildinfo ├── .nojekyll ├── 1/ │ ├── 1-0.html │ ├── 1-1.html │ ├── 1-2.html │ ├── 1-3.html │ └── 1-4.html ├── 2/ │ ├── 2-1.html │ ├── 2-2.html │ └── 2-3.html ├── 3/ │ ├── 3-1.html │ ├── 3-2.html │ └── 3-3.html ├── 4/ │ ├── 4-1.html │ ├── 4-2.html │ └── 4-3.html ├── 5/ │ ├── 5-1.html │ ├── 5-2.html │ └── 5-3.html ├── 6/ │ ├── 6-1.html │ ├── 6-2.html │ └── 6-3.html ├── 7/ │ ├── 7-1.html │ └── 7-2.html ├── _static/ │ ├── alabaster.css │ ├── basic.css │ ├── custom.css │ ├── custom.css~ │ ├── doctools.js │ ├── documentation_options.js │ ├── language_data.js │ ├── nbsphinx-code-cells.css │ ├── nbsphinx-gallery.css │ ├── pygments.css │ ├── searchtools.js │ └── sphinx_highlight.js ├── appendix/ │ ├── 1-jupyter-notebook.html │ ├── 2-set.html │ ├── 3-recursion.html │ ├── 3-visualization.html │ ├── 4-csv.html │ ├── 5-bokeh.html │ ├── 5-command.html │ ├── 5-matplotlib.html │ └── 5-re.html ├── genindex.html ├── index.html ├── index_of_terms.html ├── objects.inv ├── search.html ├── searchindex.js └── toc.html