├── Python_Succinctly ├── chapter_1 │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ ├── 06.py │ ├── 07.py │ ├── 08.py │ ├── 09.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 13.py │ ├── 14.py │ ├── 15.py │ ├── 16.py │ ├── 17.py │ ├── 18.py │ ├── 19.py │ ├── 20.py │ ├── 21.py │ ├── 22.py │ ├── 23.py │ ├── 24.py │ ├── 25.py │ ├── 26.py │ ├── 27.py │ ├── 28.py │ ├── 29.py │ ├── 30.py │ ├── 31.py │ ├── animal_vegetable_mineral.py │ ├── copy_cat.py │ └── what_did_the_pig_say.py ├── chapter_2 │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ ├── 06.py │ ├── 07.py │ ├── 08.py │ ├── 09.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 13.py │ ├── hosting_costs1.py │ └── hosting_costs2.py ├── chapter_3 │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ ├── 06.py │ ├── 07.py │ └── walk_drive_fly.py ├── chapter_4 │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ ├── 06.py │ ├── 07.py │ ├── 08.py │ ├── 09.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 13.py │ └── fill_in_the_blank.py ├── chapter_5 │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ ├── 06.py │ ├── 07.py │ ├── 08.py │ ├── 09.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 13.py │ ├── 14.py │ ├── 15.py │ ├── 16.py │ ├── 17.py │ ├── 18.py │ ├── 19.py │ ├── 20.py │ └── grocery_list.py ├── chapter_6 │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ ├── 06.py │ ├── 07.py │ ├── 08.py │ ├── 09.py │ ├── 10.py │ ├── 11.py │ └── facts.py ├── chapter_7 │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ ├── 06.py │ ├── 07.py │ ├── 08.py │ └── zip_codes.py ├── chapter_8 │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ ├── 06.py │ ├── 07.py │ ├── 08.py │ ├── 09.py │ ├── 10.py │ ├── 11.py │ ├── 12.py │ ├── 13.py │ ├── 14.py │ ├── alphabetize.py │ ├── animals.txt │ ├── file.txt │ ├── line_numbers.py │ ├── line_numbers.txt │ └── pig.jpg ├── chapter_9 │ ├── 01.py │ ├── 02.py │ ├── 03.py │ ├── 04.py │ ├── 05.py │ ├── 06.py │ ├── 07.py │ ├── 08.py │ ├── 09.py │ ├── 10.py │ ├── pig_say.py │ ├── pig_talk.py │ ├── say_hello.py │ ├── say_hello2.py │ ├── say_hello3.py │ ├── say_hello3.pyc │ └── show_module_path.py ├── conclusion │ └── the_zen_of_python.py └── introduction │ ├── hello.py │ └── hello2.py ├── README.md └── cover.png /Python_Succinctly/chapter_1/01.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | vegetable = 'asparagus' 3 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/02.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | vegetable = 'onion' 3 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/03.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/04.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | vegetable = 'asparagus' 3 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/05.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | vegetable = "asparagus" 3 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/06.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | sentence = 'He said, "That asparagus tastes great!"' 3 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/07.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/08.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/09.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/10.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/11.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/12.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/13.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/14.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | print(len('asparagus')) 3 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/15.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/16.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/17.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/18.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/19.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/20.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | print('-' * 12) 3 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/21.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/22.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/23.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/24.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/25.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/26.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/27.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/28.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/29.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/30.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/31.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/animal_vegetable_mineral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/animal_vegetable_mineral.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/copy_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/copy_cat.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_1/what_did_the_pig_say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_1/what_did_the_pig_say.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/01.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/02.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/03.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/04.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/05.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/06.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/07.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/08.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/09.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/10.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/11.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/12.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | """Yet another comment.""" 4 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/13.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/hosting_costs1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/hosting_costs1.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_2/hosting_costs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_2/hosting_costs2.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_3/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_3/01.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_3/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_3/02.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_3/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_3/03.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_3/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_3/04.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_3/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_3/05.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_3/06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_3/06.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_3/07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_3/07.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_3/walk_drive_fly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_3/walk_drive_fly.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/01.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/02.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/03.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/04.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/05.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/06.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/07.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/08.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/09.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/10.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/11.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/12.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/13.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_4/fill_in_the_blank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_4/fill_in_the_blank.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/01.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/02.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/03.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/04.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/05.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/06.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/07.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/08.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/09.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/10.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/11.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/12.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/13.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/14.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/15.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/16.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/17.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/18.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/19.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/20.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_5/grocery_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_5/grocery_list.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/01.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/02.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/03.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/04.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/05.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/06.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/07.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/08.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/09.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/10.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/11.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_6/facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_6/facts.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_7/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_7/01.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_7/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_7/02.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_7/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_7/03.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_7/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_7/04.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_7/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_7/05.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_7/06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_7/06.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_7/07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_7/07.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_7/08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_7/08.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_7/zip_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_7/zip_codes.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/01.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/02.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/03.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/04.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/05.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/06.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/07.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/08.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/09.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/10.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/11.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/12.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/13.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/14.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/alphabetize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/alphabetize.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/animals.txt: -------------------------------------------------------------------------------- 1 | toad 2 | bear 3 | pig 4 | cow 5 | duck 6 | horse 7 | dog 8 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/file.txt -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/line_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/line_numbers.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/line_numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/line_numbers.txt -------------------------------------------------------------------------------- /Python_Succinctly/chapter_8/pig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_8/pig.jpg -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/01.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/02.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/03.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/04.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/05.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/06.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import say_hello 4 | -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/07.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/08.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/09.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/10.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/pig_say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/pig_say.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/pig_talk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/pig_talk.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/say_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/say_hello.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/say_hello2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/say_hello2.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/say_hello3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/say_hello3.py -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/say_hello3.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/say_hello3.pyc -------------------------------------------------------------------------------- /Python_Succinctly/chapter_9/show_module_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/Python_Succinctly/chapter_9/show_module_path.py -------------------------------------------------------------------------------- /Python_Succinctly/conclusion/the_zen_of_python.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import this 4 | -------------------------------------------------------------------------------- /Python_Succinctly/introduction/hello.py: -------------------------------------------------------------------------------- 1 | print('Hello') 2 | -------------------------------------------------------------------------------- /Python_Succinctly/introduction/hello2.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | print('Hello') 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/README.md -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Python-Succinctly/HEAD/cover.png --------------------------------------------------------------------------------