├── .gitignore ├── LICENSE ├── README.md ├── chapters ├── Ch.00.Prologue.ipynb ├── Ch.01.IntroducingPython.ipynb ├── Ch.02.DataTypes.ipynb ├── Ch.03.Collections.ipynb ├── Ch.04.ConditionalsLoopsErrors.ipynb ├── Ch.05.FunctionsClasses.ipynb ├── Ch.06.TheFileSystem.ipynb └── Ch.07.WhereToNext.ipynb ├── exercises ├── Ch.A01.ShortQuestions.ipynb ├── Ch.A02.ShortAnswers.ipynb ├── Ch.A03.LongerIdeas.ipynb └── MASTER_Ch.A.ShortQuestions.ipynb ├── latex └── build_book.py └── pdf └── IntroducingPython.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/README.md -------------------------------------------------------------------------------- /chapters/Ch.00.Prologue.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/chapters/Ch.00.Prologue.ipynb -------------------------------------------------------------------------------- /chapters/Ch.01.IntroducingPython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/chapters/Ch.01.IntroducingPython.ipynb -------------------------------------------------------------------------------- /chapters/Ch.02.DataTypes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/chapters/Ch.02.DataTypes.ipynb -------------------------------------------------------------------------------- /chapters/Ch.03.Collections.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/chapters/Ch.03.Collections.ipynb -------------------------------------------------------------------------------- /chapters/Ch.04.ConditionalsLoopsErrors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/chapters/Ch.04.ConditionalsLoopsErrors.ipynb -------------------------------------------------------------------------------- /chapters/Ch.05.FunctionsClasses.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/chapters/Ch.05.FunctionsClasses.ipynb -------------------------------------------------------------------------------- /chapters/Ch.06.TheFileSystem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/chapters/Ch.06.TheFileSystem.ipynb -------------------------------------------------------------------------------- /chapters/Ch.07.WhereToNext.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/chapters/Ch.07.WhereToNext.ipynb -------------------------------------------------------------------------------- /exercises/Ch.A01.ShortQuestions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/exercises/Ch.A01.ShortQuestions.ipynb -------------------------------------------------------------------------------- /exercises/Ch.A02.ShortAnswers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/exercises/Ch.A02.ShortAnswers.ipynb -------------------------------------------------------------------------------- /exercises/Ch.A03.LongerIdeas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/exercises/Ch.A03.LongerIdeas.ipynb -------------------------------------------------------------------------------- /exercises/MASTER_Ch.A.ShortQuestions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/exercises/MASTER_Ch.A.ShortQuestions.ipynb -------------------------------------------------------------------------------- /latex/build_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/latex/build_book.py -------------------------------------------------------------------------------- /pdf/IntroducingPython.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berniehogan/IntroducingPython/HEAD/pdf/IntroducingPython.pdf --------------------------------------------------------------------------------