├── .DS_Store ├── 01-building-abstractions-with-functions ├── 1.1-introduction.md ├── 1.2-the-elements-of-programming.md ├── 1.3-define-new-functions.md ├── 1.4-pratical-guidance-the-art-of-the-function.md ├── 1.5-control.md └── 1.6-high-order-functions.md ├── 02-buiding-abstractions-with-objects ├── 2.1-introduction.md ├── 2.2-data-abstraction.md ├── 2.3-sequences.md ├── 2.4-mutable-data.md ├── 2.5-object-oriented-programming.md ├── 2.6-implementing-classes-and-objects.md └── 2.7-generic-operations.md ├── 03-the-structure-and-interpretation-of-computer-programs ├── 3.1-introduction.md ├── 3.2-functions-and-the-processes-they-generate.md ├── 3.3-recursive-data-structures.md ├── 3.4-exceptions.md ├── 3.5-interpreters-for-languages-with-combination.md └── 3.6-interpreters-for-languages-with-abstraction.md ├── 04-distributed-and-parallel-computing ├── 4.1-introduction.md ├── 4.2-distributed-computing.md └── 4.3-parallel-computing.md ├── 05-sequences-and-coroutines ├── 5.1-introduction.md ├── 5.2-implicit-sequences.md └── 5.3-coroutines.md ├── README.md ├── cover.jpg ├── ebook.epub ├── img ├── .DS_Store ├── 01 │ ├── .DS_Store │ ├── curves.png │ ├── evaluate_square.png │ ├── evaluate_sum_squares_0.png │ ├── evaluate_sum_squares_1.png │ ├── evaluate_sum_squares_2.png │ ├── evaluate_sum_squares_3.png │ ├── expression_tree.png │ ├── function_abs.png │ ├── function_print.png │ ├── global_frame.png │ ├── global_frame_assignment.png │ ├── global_frame_def.png │ ├── iter_improve_apply.png │ ├── iter_improve_global.png │ ├── newton.png │ ├── pi_sum.png │ ├── square_root.png │ └── square_root_update.png ├── 02 │ ├── .DS_Store │ ├── barriers.png │ ├── constraints.png │ ├── getitem_rlist_0.png │ ├── getitem_rlist_1.png │ ├── getitem_rlist_2.png │ ├── interface.png │ ├── lists.png │ ├── multiple_inheritance.png │ ├── nested_pairs.png │ ├── nonlocal_assign.png │ ├── nonlocal_call.png │ ├── nonlocal_call2.png │ ├── nonlocal_corefer.png │ ├── nonlocal_def.png │ ├── nonlocal_def2.png │ ├── nonlocal_recall.png │ ├── pair.png │ └── sequence.png ├── 03 │ ├── eval_apply.png │ ├── fact.png │ ├── factorial_machine.png │ ├── fib.png │ ├── fib_env.png │ ├── logo_apply.png │ ├── logo_eval.png │ ├── pig_latin.png │ ├── scope.png │ ├── set_trees.png │ ├── sier.png │ ├── star.png │ ├── tree.png │ └── universal_machine.png ├── 04 │ ├── clientserver.png │ ├── deadlock.png │ ├── vector-math1.png │ ├── vector-math2.png │ └── vector-math3.png └── 05 │ ├── coroutine.png │ ├── produce-filter-consume.png │ ├── read-match-coroutine.png │ └── subroutine.png ├── introduction.md └── style.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/.DS_Store -------------------------------------------------------------------------------- /01-building-abstractions-with-functions/1.1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/01-building-abstractions-with-functions/1.1-introduction.md -------------------------------------------------------------------------------- /01-building-abstractions-with-functions/1.2-the-elements-of-programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/01-building-abstractions-with-functions/1.2-the-elements-of-programming.md -------------------------------------------------------------------------------- /01-building-abstractions-with-functions/1.3-define-new-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/01-building-abstractions-with-functions/1.3-define-new-functions.md -------------------------------------------------------------------------------- /01-building-abstractions-with-functions/1.4-pratical-guidance-the-art-of-the-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/01-building-abstractions-with-functions/1.4-pratical-guidance-the-art-of-the-function.md -------------------------------------------------------------------------------- /01-building-abstractions-with-functions/1.5-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/01-building-abstractions-with-functions/1.5-control.md -------------------------------------------------------------------------------- /01-building-abstractions-with-functions/1.6-high-order-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/01-building-abstractions-with-functions/1.6-high-order-functions.md -------------------------------------------------------------------------------- /02-buiding-abstractions-with-objects/2.1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/02-buiding-abstractions-with-objects/2.1-introduction.md -------------------------------------------------------------------------------- /02-buiding-abstractions-with-objects/2.2-data-abstraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/02-buiding-abstractions-with-objects/2.2-data-abstraction.md -------------------------------------------------------------------------------- /02-buiding-abstractions-with-objects/2.3-sequences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/02-buiding-abstractions-with-objects/2.3-sequences.md -------------------------------------------------------------------------------- /02-buiding-abstractions-with-objects/2.4-mutable-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/02-buiding-abstractions-with-objects/2.4-mutable-data.md -------------------------------------------------------------------------------- /02-buiding-abstractions-with-objects/2.5-object-oriented-programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/02-buiding-abstractions-with-objects/2.5-object-oriented-programming.md -------------------------------------------------------------------------------- /02-buiding-abstractions-with-objects/2.6-implementing-classes-and-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/02-buiding-abstractions-with-objects/2.6-implementing-classes-and-objects.md -------------------------------------------------------------------------------- /02-buiding-abstractions-with-objects/2.7-generic-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/02-buiding-abstractions-with-objects/2.7-generic-operations.md -------------------------------------------------------------------------------- /03-the-structure-and-interpretation-of-computer-programs/3.1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/03-the-structure-and-interpretation-of-computer-programs/3.1-introduction.md -------------------------------------------------------------------------------- /03-the-structure-and-interpretation-of-computer-programs/3.2-functions-and-the-processes-they-generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/03-the-structure-and-interpretation-of-computer-programs/3.2-functions-and-the-processes-they-generate.md -------------------------------------------------------------------------------- /03-the-structure-and-interpretation-of-computer-programs/3.3-recursive-data-structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/03-the-structure-and-interpretation-of-computer-programs/3.3-recursive-data-structures.md -------------------------------------------------------------------------------- /03-the-structure-and-interpretation-of-computer-programs/3.4-exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/03-the-structure-and-interpretation-of-computer-programs/3.4-exceptions.md -------------------------------------------------------------------------------- /03-the-structure-and-interpretation-of-computer-programs/3.5-interpreters-for-languages-with-combination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/03-the-structure-and-interpretation-of-computer-programs/3.5-interpreters-for-languages-with-combination.md -------------------------------------------------------------------------------- /03-the-structure-and-interpretation-of-computer-programs/3.6-interpreters-for-languages-with-abstraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/03-the-structure-and-interpretation-of-computer-programs/3.6-interpreters-for-languages-with-abstraction.md -------------------------------------------------------------------------------- /04-distributed-and-parallel-computing/4.1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/04-distributed-and-parallel-computing/4.1-introduction.md -------------------------------------------------------------------------------- /04-distributed-and-parallel-computing/4.2-distributed-computing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/04-distributed-and-parallel-computing/4.2-distributed-computing.md -------------------------------------------------------------------------------- /04-distributed-and-parallel-computing/4.3-parallel-computing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/04-distributed-and-parallel-computing/4.3-parallel-computing.md -------------------------------------------------------------------------------- /05-sequences-and-coroutines/5.1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/05-sequences-and-coroutines/5.1-introduction.md -------------------------------------------------------------------------------- /05-sequences-and-coroutines/5.2-implicit-sequences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/05-sequences-and-coroutines/5.2-implicit-sequences.md -------------------------------------------------------------------------------- /05-sequences-and-coroutines/5.3-coroutines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/05-sequences-and-coroutines/5.3-coroutines.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/README.md -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/cover.jpg -------------------------------------------------------------------------------- /ebook.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/ebook.epub -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/01/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/.DS_Store -------------------------------------------------------------------------------- /img/01/curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/curves.png -------------------------------------------------------------------------------- /img/01/evaluate_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/evaluate_square.png -------------------------------------------------------------------------------- /img/01/evaluate_sum_squares_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/evaluate_sum_squares_0.png -------------------------------------------------------------------------------- /img/01/evaluate_sum_squares_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/evaluate_sum_squares_1.png -------------------------------------------------------------------------------- /img/01/evaluate_sum_squares_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/evaluate_sum_squares_2.png -------------------------------------------------------------------------------- /img/01/evaluate_sum_squares_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/evaluate_sum_squares_3.png -------------------------------------------------------------------------------- /img/01/expression_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/expression_tree.png -------------------------------------------------------------------------------- /img/01/function_abs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/function_abs.png -------------------------------------------------------------------------------- /img/01/function_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/function_print.png -------------------------------------------------------------------------------- /img/01/global_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/global_frame.png -------------------------------------------------------------------------------- /img/01/global_frame_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/global_frame_assignment.png -------------------------------------------------------------------------------- /img/01/global_frame_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/global_frame_def.png -------------------------------------------------------------------------------- /img/01/iter_improve_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/iter_improve_apply.png -------------------------------------------------------------------------------- /img/01/iter_improve_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/iter_improve_global.png -------------------------------------------------------------------------------- /img/01/newton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/newton.png -------------------------------------------------------------------------------- /img/01/pi_sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/pi_sum.png -------------------------------------------------------------------------------- /img/01/square_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/square_root.png -------------------------------------------------------------------------------- /img/01/square_root_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/01/square_root_update.png -------------------------------------------------------------------------------- /img/02/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/.DS_Store -------------------------------------------------------------------------------- /img/02/barriers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/barriers.png -------------------------------------------------------------------------------- /img/02/constraints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/constraints.png -------------------------------------------------------------------------------- /img/02/getitem_rlist_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/getitem_rlist_0.png -------------------------------------------------------------------------------- /img/02/getitem_rlist_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/getitem_rlist_1.png -------------------------------------------------------------------------------- /img/02/getitem_rlist_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/getitem_rlist_2.png -------------------------------------------------------------------------------- /img/02/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/interface.png -------------------------------------------------------------------------------- /img/02/lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/lists.png -------------------------------------------------------------------------------- /img/02/multiple_inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/multiple_inheritance.png -------------------------------------------------------------------------------- /img/02/nested_pairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/nested_pairs.png -------------------------------------------------------------------------------- /img/02/nonlocal_assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/nonlocal_assign.png -------------------------------------------------------------------------------- /img/02/nonlocal_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/nonlocal_call.png -------------------------------------------------------------------------------- /img/02/nonlocal_call2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/nonlocal_call2.png -------------------------------------------------------------------------------- /img/02/nonlocal_corefer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/nonlocal_corefer.png -------------------------------------------------------------------------------- /img/02/nonlocal_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/nonlocal_def.png -------------------------------------------------------------------------------- /img/02/nonlocal_def2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/nonlocal_def2.png -------------------------------------------------------------------------------- /img/02/nonlocal_recall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/nonlocal_recall.png -------------------------------------------------------------------------------- /img/02/pair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/pair.png -------------------------------------------------------------------------------- /img/02/sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/02/sequence.png -------------------------------------------------------------------------------- /img/03/eval_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/eval_apply.png -------------------------------------------------------------------------------- /img/03/fact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/fact.png -------------------------------------------------------------------------------- /img/03/factorial_machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/factorial_machine.png -------------------------------------------------------------------------------- /img/03/fib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/fib.png -------------------------------------------------------------------------------- /img/03/fib_env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/fib_env.png -------------------------------------------------------------------------------- /img/03/logo_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/logo_apply.png -------------------------------------------------------------------------------- /img/03/logo_eval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/logo_eval.png -------------------------------------------------------------------------------- /img/03/pig_latin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/pig_latin.png -------------------------------------------------------------------------------- /img/03/scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/scope.png -------------------------------------------------------------------------------- /img/03/set_trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/set_trees.png -------------------------------------------------------------------------------- /img/03/sier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/sier.png -------------------------------------------------------------------------------- /img/03/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/star.png -------------------------------------------------------------------------------- /img/03/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/tree.png -------------------------------------------------------------------------------- /img/03/universal_machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/03/universal_machine.png -------------------------------------------------------------------------------- /img/04/clientserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/04/clientserver.png -------------------------------------------------------------------------------- /img/04/deadlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/04/deadlock.png -------------------------------------------------------------------------------- /img/04/vector-math1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/04/vector-math1.png -------------------------------------------------------------------------------- /img/04/vector-math2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/04/vector-math2.png -------------------------------------------------------------------------------- /img/04/vector-math3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/04/vector-math3.png -------------------------------------------------------------------------------- /img/05/coroutine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/05/coroutine.png -------------------------------------------------------------------------------- /img/05/produce-filter-consume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/05/produce-filter-consume.png -------------------------------------------------------------------------------- /img/05/read-match-coroutine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/05/read-match-coroutine.png -------------------------------------------------------------------------------- /img/05/subroutine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/img/05/subroutine.png -------------------------------------------------------------------------------- /introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/introduction.md -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianmari/SICP-Python-ebook/HEAD/style.css --------------------------------------------------------------------------------