├── 100_page_python_intro.md ├── LICENSE ├── README.md ├── Version_changes.md ├── exercises └── Exercises.md ├── images ├── Python_shell_run.png ├── debug_in_action.png ├── debug_window.png ├── hello.png ├── help_print.png ├── info.svg ├── py_intro_ls.png ├── pypi_copy_cmd.png ├── python_exercises.png └── warning.svg ├── programs ├── cli_args │ ├── inplace_edit.py │ ├── ip.txt │ ├── op.txt │ ├── sample.txt │ ├── sort_ext.py │ ├── sort_ext_stdin.py │ └── sum_two_nums.py ├── control_structures │ ├── countdown.py │ └── odd_even.py ├── dealing_with_files │ ├── ip.txt │ ├── read_file.py │ └── write_file.py ├── exceptions │ ├── syntax_error.py │ ├── try_except.py │ ├── try_except_else.py │ └── try_except_finally.py ├── functions │ ├── default_args.py │ ├── no_args.py │ └── with_args.py ├── introduction │ └── hello.py ├── modules │ ├── num_funcs.py │ ├── num_funcs_module.py │ └── rand_number.py ├── strings_user_input │ └── triple_quotes.py └── testing │ ├── exception_testing.py │ ├── nested_braces.py │ └── nested_braces_re.py └── sample_chapters └── 100_page_python_intro_sample.pdf /100_page_python_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/100_page_python_intro.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/README.md -------------------------------------------------------------------------------- /Version_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/Version_changes.md -------------------------------------------------------------------------------- /exercises/Exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/exercises/Exercises.md -------------------------------------------------------------------------------- /images/Python_shell_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/Python_shell_run.png -------------------------------------------------------------------------------- /images/debug_in_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/debug_in_action.png -------------------------------------------------------------------------------- /images/debug_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/debug_window.png -------------------------------------------------------------------------------- /images/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/hello.png -------------------------------------------------------------------------------- /images/help_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/help_print.png -------------------------------------------------------------------------------- /images/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/info.svg -------------------------------------------------------------------------------- /images/py_intro_ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/py_intro_ls.png -------------------------------------------------------------------------------- /images/pypi_copy_cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/pypi_copy_cmd.png -------------------------------------------------------------------------------- /images/python_exercises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/python_exercises.png -------------------------------------------------------------------------------- /images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/images/warning.svg -------------------------------------------------------------------------------- /programs/cli_args/inplace_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/cli_args/inplace_edit.py -------------------------------------------------------------------------------- /programs/cli_args/ip.txt: -------------------------------------------------------------------------------- 1 | hi there 2 | today is sunny 3 | have a nice day 4 | -------------------------------------------------------------------------------- /programs/cli_args/op.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/cli_args/op.txt -------------------------------------------------------------------------------- /programs/cli_args/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/cli_args/sample.txt -------------------------------------------------------------------------------- /programs/cli_args/sort_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/cli_args/sort_ext.py -------------------------------------------------------------------------------- /programs/cli_args/sort_ext_stdin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/cli_args/sort_ext_stdin.py -------------------------------------------------------------------------------- /programs/cli_args/sum_two_nums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/cli_args/sum_two_nums.py -------------------------------------------------------------------------------- /programs/control_structures/countdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/control_structures/countdown.py -------------------------------------------------------------------------------- /programs/control_structures/odd_even.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/control_structures/odd_even.py -------------------------------------------------------------------------------- /programs/dealing_with_files/ip.txt: -------------------------------------------------------------------------------- 1 | hi there 2 | today is sunny 3 | have a nice day 4 | -------------------------------------------------------------------------------- /programs/dealing_with_files/read_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/dealing_with_files/read_file.py -------------------------------------------------------------------------------- /programs/dealing_with_files/write_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/dealing_with_files/write_file.py -------------------------------------------------------------------------------- /programs/exceptions/syntax_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/exceptions/syntax_error.py -------------------------------------------------------------------------------- /programs/exceptions/try_except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/exceptions/try_except.py -------------------------------------------------------------------------------- /programs/exceptions/try_except_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/exceptions/try_except_else.py -------------------------------------------------------------------------------- /programs/exceptions/try_except_finally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/exceptions/try_except_finally.py -------------------------------------------------------------------------------- /programs/functions/default_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/functions/default_args.py -------------------------------------------------------------------------------- /programs/functions/no_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/functions/no_args.py -------------------------------------------------------------------------------- /programs/functions/with_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/functions/with_args.py -------------------------------------------------------------------------------- /programs/introduction/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/introduction/hello.py -------------------------------------------------------------------------------- /programs/modules/num_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/modules/num_funcs.py -------------------------------------------------------------------------------- /programs/modules/num_funcs_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/modules/num_funcs_module.py -------------------------------------------------------------------------------- /programs/modules/rand_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/modules/rand_number.py -------------------------------------------------------------------------------- /programs/strings_user_input/triple_quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/strings_user_input/triple_quotes.py -------------------------------------------------------------------------------- /programs/testing/exception_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/testing/exception_testing.py -------------------------------------------------------------------------------- /programs/testing/nested_braces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/testing/nested_braces.py -------------------------------------------------------------------------------- /programs/testing/nested_braces_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/programs/testing/nested_braces_re.py -------------------------------------------------------------------------------- /sample_chapters/100_page_python_intro_sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/100_page_python_intro/HEAD/sample_chapters/100_page_python_intro_sample.pdf --------------------------------------------------------------------------------