├── .gitignore ├── .idea ├── bookn.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── conversion_tools ├── TOC.yml ├── copy_images_dir.py ├── filter_links.py ├── make_mkdocs_yaml.py ├── md_not_converted.tpl ├── nb2html.py ├── nb2latex.py ├── nb2mkdocs.py ├── nb_list_tools.py ├── remove_section_from_TOC.ipynb ├── templates │ ├── book_PUU.tplx │ └── noprompts.tplx ├── test_latex.tex ├── test_output.tex ├── test_output2.tex ├── test_output3.tex ├── test_output4.tex ├── test_output5.tex └── yaml_TOC.py ├── notebooks ├── 00-Preface │ ├── 00.00-Motivation.ipynb │ ├── 00.02-Acknowledgments.ipynb │ ├── 00.03-Supporting-Materials.ipynb │ ├── 00.04-Formatting-Conventions.ipynb │ └── 00.05-Errata.ipynb ├── 01-Orientation │ ├── 01.00-Welcome.ipynb │ ├── 01.01-Why-Python.ipynb │ ├── 01.02-The-Anaconda-Distribution-of-Python.ipynb │ ├── 01.03-Installing-Anaconda-on-Windows.ipynb │ ├── 01.04-Installing-Anaconda-on-MacOS.ipynb │ ├── 01.05-Installing-Anaconda-on-Linux.ipynb │ ├── 01.06-Installing-Python-from-Python-dot-org.ipynb │ ├── 01.07-Summary.ipynb │ ├── 01.08-Review-Questions.ipynb │ └── images │ │ ├── Anaconda_download_linux.png │ │ ├── anaconda_agree_to_license.png │ │ ├── anaconda_download_mac.png │ │ ├── anaconda_download_mac_ask_for_email.png │ │ ├── anaconda_download_page.png │ │ ├── anaconda_downloading.png │ │ ├── anaconda_enter_email.png │ │ ├── anaconda_from_start_menu.png │ │ ├── anaconda_install_linux_copy_link_address.png │ │ ├── anaconda_installer_advanced_options.png │ │ ├── anaconda_installer_click_next.png │ │ ├── anaconda_path2.png │ │ ├── anaconda_prompt.png │ │ ├── anaconda_python3_or_python2.png │ │ ├── anaconda_run_installer.png │ │ ├── anaconda_select_windows.png │ │ ├── anaconda_window.png │ │ ├── conda_import_this.png │ │ ├── conda_import_this_output.png │ │ ├── conda_in_windows_start_menu.png │ │ ├── conda_prompt_type_python.png │ │ ├── conda_type_python.png │ │ ├── python_dot_org_macos_download.PNG │ │ └── python_dot_org_windows_download.PNG ├── 02-The-Python-REPL │ ├── 02.00-Introduction.ipynb │ ├── 02.01-Python-as-a-Calculator.ipynb │ ├── 02.02-Variables.ipynb │ ├── 02.03-String-Operations.ipynb │ ├── 02.04-Print-Statements.ipynb │ ├── 02.05-Summary.ipynb │ └── 02.06-Review-Questions.ipynb ├── 03-Data-Types-and-Variables │ ├── 03.00-Introduction.ipynb │ ├── 03.01-Numeric-Data-Types.ipynb │ ├── 03.02-Boolean-Data-Type.ipynb │ ├── 03.03-Strings.ipynb │ ├── 03.04-Lists.ipynb │ ├── 03.05-Dictionaries-and-Tuples.ipynb │ ├── 03.06-Summary.ipynb │ ├── 03.07-Review-Questions.ipynb │ └── images │ │ ├── reverse_string_indexing.png │ │ ├── reverse_string_indexing.xml │ │ ├── string_indexing.png │ │ └── string_indexing.xml ├── 04-Jupyter-Notebooks │ ├── 04.00-Introduction.ipynb │ ├── 04.01-What-is-a-Jupyter-Notebook.ipynb │ ├── 04.02-Why-Jupyter-Notebooks.ipynb │ ├── 04.03-Installing-Juypter.ipynb │ ├── 04.04-Opening-a-Jupyter-Notebook.ipynb │ ├── 04.05-The-Jupyter-Notebook-Interface.ipynb │ ├── 04.06-Magic-Cells.ipynb │ ├── 04.07-Getting-Help-in-a-Jupyter-Notebook.ipynb │ ├── 04.08-Summary.ipynb │ ├── 04.10-Review-Questions.ipynb │ ├── hello.py │ └── images │ │ ├── Anaconda_Prompt_Jupyter_Notebook.png │ │ ├── Jupyter_Home_Browser.png │ │ ├── anaconda_navigator_jupyter_notebook_launch.png │ │ ├── anaconda_navigator_jupyter_notebook_start.png │ │ ├── anaconda_start_menu.png │ │ ├── change_cell_type.png │ │ ├── click_change_name.png │ │ ├── code_cell.png │ │ ├── downloading_complete.png │ │ ├── engineering.png │ │ ├── file_download_as_notebook.png │ │ ├── file_make_a_copy.png │ │ ├── insert_cell_above.png │ │ ├── jupyter_notebook_anaconda_prompt.png │ │ ├── jupyter_notebook_dot_py_file.png │ │ ├── jupyter_notebook_example.png │ │ ├── jupyter_notebook_export_options.png │ │ ├── jupyter_notebook_markdown_cells_as_comments.png │ │ ├── kernel_restart_and_clear_output.png │ │ ├── markdown_cell.png │ │ ├── new_notebook.png │ │ ├── new_notebook_from_browser.png │ │ ├── notebook_file_browser.png │ │ ├── notebook_file_browser_click_folder.png │ │ ├── notebook_file_browser_click_notebook.png │ │ ├── notebook_json.png │ │ ├── output_cell.png │ │ ├── rename_dialog.png │ │ ├── rename_notebook.png │ │ ├── rename_window.png │ │ ├── run_cell.png │ │ ├── run_import_this.png │ │ ├── save_notebook.png │ │ ├── windows_start_anaconda_navigator.png │ │ └── windows_start_jupyter_notebook.png ├── 05-Functions-and-Modules │ ├── 05.00-Introduction.ipynb │ ├── 05.01-Why-functions.ipynb │ ├── 05.02-First-function.ipynb │ ├── 05.03-Functions-with-multiple-arguments.ipynb │ ├── 05.04-Functions-with-default-arguments.ipynb │ ├── 05.05-Calling-Functions-from-Other-Files.ipynb │ ├── 05.06-Docstrings-in-Functions.ipynb │ ├── 05.07-Positional-and-Keyword-Arguments.ipynb │ ├── 05.08-Summary.ipynb │ ├── 05.09-Review-Questions.ipynb │ └── myfunctions.py ├── 06-Plotting-with-Matplotlib │ ├── 06.00-Introduction.ipynb │ ├── 06.01-What-is-Matplotlib.ipynb │ ├── 06.02-Installing Matplotlib.ipynb │ ├── 06.03-Line-Plots.ipynb │ ├── 06.04-Saving-Plots.ipynb │ ├── 06.05-Multi-Line-Plots.ipynb │ ├── 06.06-Bar-Charts-and-Pie-Charts.ipynb │ ├── 06.07-Error-Bars.ipynb │ ├── 06.08-Histograms.ipynb │ ├── 06.09-Box-Plots-and-Violin-Plots.ipynb │ ├── 06.10-Scatter-Plots.ipynb │ ├── 06.11-Plot-Annotations.ipynb │ ├── 06.12-Subplots.ipynb │ ├── 06.13-Plot-Styles.ipynb │ ├── 06.14-Contour-Plots.ipynb │ ├── 06.15-Quiver-and-Stream-Plots.ipynb │ ├── 06.16-3D-Surface-Plots.ipynb │ ├── 06.17-Summary.ipynb │ ├── 06.18-Review-Questions.ipynb │ ├── 3_quiver_plots.png │ ├── bar_plot.png │ ├── bar_plot_with_error_bars.png │ └── plot.png ├── 07-If-Else-Try-Except │ ├── 07.00-Introduction.ipynb │ ├── 07.01-User-Input.ipynb │ ├── 07.02-If-Statements.ipynb │ ├── 07.02-Selection-Statements.ipynb │ ├── 07.04-If-Else-Statements.ipynb │ ├── 07.05-Try-Except-Statements.ipynb │ ├── 07.06-Flowcharts.ipynb │ ├── 07.07-Summary.ipynb │ ├── 07.08-Review-Questions.ipynb │ └── images │ │ ├── flow_chart_calculation_program.png │ │ ├── flow_chart_calculation_program.xml │ │ ├── flow_chart_more_complex_user_input_program.png │ │ ├── flow_chart_more_complex_user_input_program.xml │ │ ├── flow_chart_simple_print_program.png │ │ ├── flow_chart_simple_print_program.xml │ │ ├── flow_chart_simple_user_input_program.png │ │ ├── flow_chart_simple_user_input_program.xml │ │ ├── flow_chart_user_input_program.xml │ │ ├── four_flow_chart_shapes.png │ │ └── four_flow_chart_shapes.xml ├── 08-Loops │ ├── 08.00-Introduction.ipynb │ ├── 08.01-For-Loops.ipynb │ ├── 08.02-While-Loops.ipynb │ ├── 08.03-Break-and-Continue.ipynb │ ├── 08.04-Flowcharts-Describing-Loops.ipynb │ ├── 08.05-Summary.ipynb │ ├── 08.06-Review-Questions.ipynb │ └── images │ │ ├── flow_chart_of_program_that_contains_a_for_loop.png │ │ ├── flow_chart_of_program_that_contains_a_for_loop.xml │ │ ├── flow_chart_of_program_that_contains_a_while_loop.png │ │ ├── flow_chart_of_program_that_contains_a_while_loop.xml │ │ ├── four_flow_chart_shapes.png │ │ └── four_flow_chart_shapes.xml ├── 09-Matricies-and-Arrays │ ├── 09.00-Introduction.ipynb │ ├── 09.01-Installing-NumPy.ipynb │ ├── 09.02-NumPy.ipynb │ ├── 09.03-Array-Creation.ipynb │ ├── 09.04-Array-Indexing.ipynb │ ├── 09.05-Array-Slicing.ipynb │ ├── 09.06-Array-Opperations.ipynb │ ├── 09.07-Systems-of-Linear-Equations.ipynb │ ├── 09.08-Summary.ipynb │ └── 09.10-Review-Questions.ipynb ├── 10-Symbolic-Math │ ├── 10.00-Introduction.ipynb │ ├── 10.01-SymPy.ipynb │ ├── 10.02-Defining-Varaibles.ipynb │ ├── 10.03-Expressions-and-Substitutions.ipynb │ ├── 10.04-Equations.ipynb │ ├── 10.05-Solving-Equations.ipynb │ ├── 10.06-Solving-Two-Equations-for-Two-Unknowns.ipynb │ ├── 10.07-Summary.ipynb │ ├── 10.08-Review-Questions.ipynb │ └── images │ │ └── statics_problem_diagram.png ├── 11-Python-and-External-Hardware │ ├── 11.00-Introduction.ipynb │ ├── 11.01-PySerial.ipynb │ ├── 11.02-Bytes-and-Unicode-Strings.ipynb │ ├── 11.03-Controlling-an-LED.ipynb │ ├── 11.04-Reading-a-Sensor-with-Python.ipynb │ ├── 11.05-Summary.ipynb │ ├── 11.06-Project-Ideas.ipynb │ ├── images │ │ ├── Arduino_LED_fritzing.png │ │ ├── Arrow_to_Upload.png │ │ ├── Check_to_Verify.png │ │ ├── Examples_Com_PhysicalPixel.png │ │ ├── SerialMonitor_H.png │ │ ├── Tools_SerialMonitor.png │ │ ├── Tools_SerialPlotter.png │ │ ├── arduino_LED.png │ │ ├── arduino_LED.svg │ │ ├── arduino_download_page.png │ │ ├── arduino_led.fzz │ │ ├── arduino_potentiometer.fzz │ │ ├── arduino_potentiometer.svg │ │ ├── download_Arduino_IDE.png │ │ ├── file-examples-communication-physicalpixel.png │ │ ├── matplotlib_potentiometer_plot.png │ │ ├── redboard_LED.fzz │ │ ├── redboard_LED_bb.png │ │ ├── redboard_LED_potentiometer.fzz │ │ ├── redboard_pot_led_fritzing.png │ │ ├── serial_monitor_L.png │ │ ├── serial_monitor_output.png │ │ └── serial_plotter_output.png │ └── potentiometer_read.ino ├── 12-MicroPython │ ├── 12.00-Introduction.ipynb │ ├── 12.01-What-is-MicroPython.ipynb │ ├── 12.02-Installing-MicroPython.ipynb │ ├── 12.03-MicroPython-REPL.ipynb │ ├── 12.04-Blinking-a-LED.ipynb │ ├── 12.05-Reading-a-Sensor.ipynb │ ├── 12.06-Uploading-Code.ipynb │ ├── 12.07-Summary.ipynb │ ├── 12.08-Project-Ideas.ipynb │ └── images │ │ ├── Anaconda_Prompt.PNG │ │ ├── Anaconda_choose_python_version.PNG │ │ ├── Anaconda_downloads_page.PNG │ │ ├── MicroPython_in_jupyter_notebook.png │ │ ├── REPL_prompt.PNG │ │ ├── active_new_conda_env.PNG │ │ ├── bin_file_to_new_directory.PNG │ │ ├── bin_in_dir.PNG │ │ ├── conda_activate.PNG │ │ ├── conda_create_new_virtualenv.PNG │ │ ├── conda_install_mpy-repl-tool.jpg │ │ ├── conda_list.PNG │ │ ├── conda_there-jupyter-setup.png │ │ ├── device_manager_menu.png │ │ ├── download_putty.PNG │ │ ├── download_silabs_driver.PNG │ │ ├── downloads_folder.PNG │ │ ├── esptool_erase_flash.PNG │ │ ├── esptool_help.PNG │ │ ├── esptool_write_flash.PNG │ │ ├── feather_huzzah_temp_sensor_fritzing.png │ │ ├── find_device_manager.png │ │ ├── firmware_download_page.PNG │ │ ├── import_port_diag.PNG │ │ ├── micropython_modules.png │ │ ├── mkdir_micropython.PNG │ │ ├── pip_install_esptool.PNG │ │ ├── putty_config.PNG │ │ ├── putty_in_start_menu.png │ │ ├── sys_dot_implementation_and_platform.PNG │ │ ├── sys_dot_platform.PNG │ │ └── there.jupyter-setup.png ├── 99-Appendix │ ├── 99.00-Appendix.ipynb │ ├── 99.01-Reserved-and-Key-Words-in-Python.ipynb │ ├── 99.02-ASCII-Character-Codes.ipynb │ ├── 99.03-Virtual-Environments.ipynb │ ├── 99.04-NumPy-Math-Functions.ipynb │ ├── 99.05-Git-and-GitHub.ipynb │ ├── 99.06-LaTeX-Math.ipynb │ ├── 99.07-Problem-Solving-with-Python-Book-Construction.ipynb │ ├── 99.08-Contributions.ipynb │ ├── 99.09-Cover-Artwork.ipynb │ └── 99.10-About-the-Author.ipynb ├── TOC.ipynb └── figures │ └── anaconda_download_page.png ├── pdf ├── Problem-Solving-with-Python-3.6-Edition-2018-01-09.out ├── Problem-Solving-with-Python-3.6-Edition-2018-01-09.synctex(busy) ├── Problem-Solving-with-Python-3.6-Edition-2018-01-09.tex ├── Problem-Solving-with-Python-3.6-Edition-2018-01-09.toc ├── Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.out ├── Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.synctex(busy) ├── Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.tex ├── Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.toc ├── Problem-Solving-with-Python-3.6.2-Edition.aux ├── Problem-Solving-with-Python-3.6.2-Edition.out ├── Problem-Solving-with-Python-3.6.2-Edition.tex ├── Problem-Solving-with-Python-3.6.2-Edition.toc ├── README.md ├── combined_files │ ├── combined_267_0.png │ ├── combined_279_0.png │ ├── combined_285_0.png │ ├── combined_289_0.png │ ├── combined_291_0.png │ ├── combined_304_0.png │ ├── combined_307_0.png │ ├── combined_308_0.png │ ├── combined_314_0.png │ ├── combined_318_0.png │ ├── combined_323_0.png │ ├── combined_328_0.png │ ├── combined_329_0.png │ ├── combined_333_0.png │ ├── combined_338_0.png │ ├── combined_343_0.png │ ├── combined_348_0.png │ ├── combined_350_0.png │ ├── combined_351_0.png │ ├── combined_352_0.png │ ├── combined_353_0.png │ ├── combined_360_0.png │ ├── combined_363_0.png │ ├── combined_366_0.png │ ├── combined_369_0.png │ ├── combined_377_0.png │ ├── combined_384_0.png │ ├── combined_386_0.png │ ├── combined_388_0.png │ ├── combined_390_0.png │ ├── combined_393_0.png │ ├── combined_398_0.png │ ├── combined_401_0.png │ ├── combined_403_0.png │ ├── combined_405_0.png │ ├── combined_412_0.png │ ├── combined_415_0.png │ ├── combined_418_0.png │ ├── combined_421_0.png │ └── combined_549_0.png ├── copywrite_page.tex ├── dedication_page.tex ├── images │ ├── Anaconda_Prompt.PNG │ ├── Anaconda_Prompt_Jupyter_Notebook.png │ ├── Anaconda_choose_python_version.PNG │ ├── Anaconda_downloads_page.PNG │ ├── Arduino_LED_fritzing.png │ ├── Arrow_to_Upload.png │ ├── Check_to_Verify.png │ ├── Examples_Com_PhysicalPixel.png │ ├── Jupyter_Home_Browser.png │ ├── MicroPython_in_jupyter_notebook.png │ ├── REPL_prompt.PNG │ ├── SerialMonitor_H.png │ ├── Tools_SerialMonitor.png │ ├── Tools_SerialPlotter.png │ ├── active_new_conda_env.PNG │ ├── anaconda_agree_to_license.png │ ├── anaconda_download_mac.png │ ├── anaconda_download_mac_ask_for_email.png │ ├── anaconda_download_page.png │ ├── anaconda_downloading.png │ ├── anaconda_enter_email.png │ ├── anaconda_from_start_menu.png │ ├── anaconda_installer_advanced_options.png │ ├── anaconda_installer_click_next.png │ ├── anaconda_path2.png │ ├── anaconda_prompt.png │ ├── anaconda_python3_or_python2.png │ ├── anaconda_run_installer.png │ ├── anaconda_select_windows.png │ ├── anaconda_window.png │ ├── arduino_LED.png │ ├── arduino_LED.svg │ ├── arduino_led.fzz │ ├── arduino_potentiometer.fzz │ ├── arduino_potentiometer.svg │ ├── bin_file_to_new_directory.PNG │ ├── bin_in_dir.PNG │ ├── conda_activate.PNG │ ├── conda_create_new_virtualenv.PNG │ ├── conda_import_this.png │ ├── conda_import_this_output.png │ ├── conda_in_windows_start_menu.png │ ├── conda_install_mpy-repl-tool.jpg │ ├── conda_list.PNG │ ├── conda_prompt_type_python.png │ ├── conda_there-jupyter-setup.png │ ├── conda_type_python.png │ ├── device_manager_menu.png │ ├── download_Arduino_IDE.png │ ├── download_putty.PNG │ ├── download_silabs_driver.PNG │ ├── downloads_folder.PNG │ ├── engineering.png │ ├── esptool_erase_flash.PNG │ ├── esptool_help.PNG │ ├── esptool_write_flash.PNG │ ├── feather_huzzah_temp_sensor_fritzing.png │ ├── file-examples-communication-physicalpixel.png │ ├── find_device_manager.png │ ├── firmware_download_page.PNG │ ├── import_port_diag.PNG │ ├── jupyter_notebook_dot_py_file.png │ ├── jupyter_notebook_export_options.png │ ├── jupyter_notebook_markdown_cells_as_comments.png │ ├── micropython_modules.png │ ├── mkdir_micropython.PNG │ ├── pip_install_esptool.PNG │ ├── putty_config.PNG │ ├── putty_in_start_menu.png │ ├── redboard_pot_led_fritzing.png │ ├── serial_monitor_output.png │ ├── serial_plotter_output.png │ ├── sys_dot_implementation_and_platform.PNG │ ├── sys_dot_platform.PNG │ └── there.jupyter-setup.png ├── pdfout3.aux ├── pdfout3.out ├── pdfout3.tex ├── pdfout3.toc └── pdfout4.tex ├── requirements.txt ├── runtime.txt └── website ├── README.md ├── docs ├── 00-Preface │ ├── 00.00-Motivation.md │ ├── 00.02-Acknowledgments.md │ ├── 00.03-Supporting-Materials.md │ ├── 00.04-Formatting-Conventions.md │ └── 00.05-Errata.md ├── 01-Orientation │ ├── 01.00-Welcome.md │ ├── 01.01-Why-Python.md │ ├── 01.02-The-Anaconda-Distribution-of-Python.md │ ├── 01.03-Installing-Anaconda-on-Windows.md │ ├── 01.04-Installing-Anaconda-on-MacOS.md │ ├── 01.05-Installing-Anaconda-on-Linux.md │ ├── 01.06-Installing-Python-from-Python-dot-org.md │ ├── 01.07-Summary.md │ ├── 01.08-Review-Questions.md │ └── images │ │ ├── Anaconda_download_linux.png │ │ ├── anaconda_agree_to_license.png │ │ ├── anaconda_download_mac.png │ │ ├── anaconda_download_mac_ask_for_email.png │ │ ├── anaconda_download_page.png │ │ ├── anaconda_downloading.png │ │ ├── anaconda_enter_email.png │ │ ├── anaconda_from_start_menu.png │ │ ├── anaconda_install_linux_copy_link_address.png │ │ ├── anaconda_installer_advanced_options.png │ │ ├── anaconda_installer_click_next.png │ │ ├── anaconda_path2.png │ │ ├── anaconda_prompt.png │ │ ├── anaconda_python3_or_python2.png │ │ ├── anaconda_run_installer.png │ │ ├── anaconda_select_windows.png │ │ ├── anaconda_window.png │ │ ├── conda_import_this.png │ │ ├── conda_import_this_output.png │ │ ├── conda_in_windows_start_menu.png │ │ ├── conda_prompt_type_python.png │ │ ├── conda_type_python.png │ │ ├── python_dot_org_macos_download.PNG │ │ └── python_dot_org_windows_download.PNG ├── 02-The-Python-REPL │ ├── 02.00-Introduction.md │ ├── 02.01-Python-as-a-Calculator.md │ ├── 02.02-Variables.md │ ├── 02.03-String-Operations.md │ ├── 02.04-Print-Statements.md │ ├── 02.05-Summary.md │ └── 02.06-Review-Questions.md ├── 03-Data-Types-and-Variables │ ├── 03.00-Introduction.md │ ├── 03.01-Numeric-Data-Types.md │ ├── 03.02-Boolean-Data-Type.md │ ├── 03.03-Strings.md │ ├── 03.04-Lists.md │ ├── 03.05-Dictionaries-and-Tuples.md │ ├── 03.06-Summary.md │ ├── 03.07-Review-Questions.md │ └── images │ │ ├── reverse_string_indexing.png │ │ ├── reverse_string_indexing.xml │ │ ├── string_indexing.png │ │ └── string_indexing.xml ├── 04-Jupyter-Notebooks │ ├── 04.00-Introduction.md │ ├── 04.01-What-is-a-Jupyter-Notebook.md │ ├── 04.02-Why-Jupyter-Notebooks.md │ ├── 04.03-Installing-Juypter.md │ ├── 04.04-Opening-a-Jupyter-Notebook.md │ ├── 04.05-The-Jupyter-Notebook-Interface.md │ ├── 04.06-Magic-Cells.md │ ├── 04.07-Getting-Help-in-a-Jupyter-Notebook.md │ ├── 04.08-Summary.md │ ├── 04.10-Review-Questions.md │ └── images │ │ ├── Anaconda_Prompt_Jupyter_Notebook.png │ │ ├── Jupyter_Home_Browser.png │ │ ├── anaconda_navigator_jupyter_notebook_launch.png │ │ ├── anaconda_navigator_jupyter_notebook_start.png │ │ ├── anaconda_start_menu.png │ │ ├── change_cell_type.png │ │ ├── click_change_name.png │ │ ├── code_cell.png │ │ ├── downloading_complete.png │ │ ├── engineering.png │ │ ├── file_download_as_notebook.png │ │ ├── file_make_a_copy.png │ │ ├── insert_cell_above.png │ │ ├── jupyter_notebook_anaconda_prompt.png │ │ ├── jupyter_notebook_dot_py_file.png │ │ ├── jupyter_notebook_example.png │ │ ├── jupyter_notebook_export_options.png │ │ ├── jupyter_notebook_markdown_cells_as_comments.png │ │ ├── kernel_restart_and_clear_output.png │ │ ├── markdown_cell.png │ │ ├── new_notebook.png │ │ ├── new_notebook_from_browser.png │ │ ├── notebook_file_browser.png │ │ ├── notebook_file_browser_click_folder.png │ │ ├── notebook_file_browser_click_notebook.png │ │ ├── notebook_json.png │ │ ├── output_cell.png │ │ ├── rename_dialog.png │ │ ├── rename_notebook.png │ │ ├── rename_window.png │ │ ├── run_cell.png │ │ ├── run_import_this.png │ │ ├── save_notebook.png │ │ ├── windows_start_anaconda_navigator.png │ │ └── windows_start_jupyter_notebook.png ├── 05-Functions-and-Modules │ ├── 05.00-Introduction.md │ ├── 05.01-Why-functions.md │ ├── 05.02-First-function.md │ ├── 05.03-Functions-with-multiple-arguments.md │ ├── 05.04-Functions-with-default-arguments.md │ ├── 05.05-Calling-Functions-from-Other-Files.md │ ├── 05.06-Docstrings-in-Functions.md │ ├── 05.07-Positional-and-Keyword-Arguments.md │ ├── 05.08-Summary.md │ └── 05.09-Review-Questions.md ├── 06-Plotting-with-Matplotlib │ ├── 06.00-Introduction.md │ ├── 06.01-What-is-Matplotlib.md │ ├── 06.02-Installing Matplotlib.md │ ├── 06.03-Line-Plots.md │ ├── 06.04-Saving-Plots.md │ ├── 06.05-Multi-Line-Plots.md │ ├── 06.06-Bar-Charts-and-Pie-Charts.md │ ├── 06.07-Error-Bars.md │ ├── 06.08-Histograms.md │ ├── 06.09-Box-Plots-and-Violin-Plots.md │ ├── 06.10-Scatter-Plots.md │ ├── 06.11-Plot-Annotations.md │ ├── 06.12-Subplots.md │ ├── 06.13-Plot-Styles.md │ ├── 06.14-Contour-Plots.md │ ├── 06.15-Quiver-and-Stream-Plots.md │ ├── 06.16-3D-Surface-Plots.md │ ├── 06.17-Summary.md │ └── 06.18-Review-Questions.md ├── 07-If-Else-Try-Except │ ├── 07.00-Introduction.md │ ├── 07.01-User-Input.md │ ├── 07.02-If-Statements.md │ ├── 07.02-Selection-Statements.md │ ├── 07.04-If-Else-Statements.md │ ├── 07.05-Try-Except-Statements.md │ ├── 07.06-Flowcharts.md │ ├── 07.07-Summary.md │ ├── 07.08-Review-Questions.md │ └── images │ │ ├── flow_chart_calculation_program.png │ │ ├── flow_chart_calculation_program.xml │ │ ├── flow_chart_more_complex_user_input_program.png │ │ ├── flow_chart_more_complex_user_input_program.xml │ │ ├── flow_chart_simple_print_program.png │ │ ├── flow_chart_simple_print_program.xml │ │ ├── flow_chart_simple_user_input_program.png │ │ ├── flow_chart_simple_user_input_program.xml │ │ ├── flow_chart_user_input_program.xml │ │ ├── four_flow_chart_shapes.png │ │ └── four_flow_chart_shapes.xml ├── 08-Loops │ ├── 08.00-Introduction.md │ ├── 08.01-For-Loops.md │ ├── 08.02-While-Loops.md │ ├── 08.03-Break-and-Continue.md │ ├── 08.04-Flowcharts-Describing-Loops.md │ ├── 08.05-Summary.md │ ├── 08.06-Review-Questions.md │ └── images │ │ ├── flow_chart_of_program_that_contains_a_for_loop.png │ │ ├── flow_chart_of_program_that_contains_a_for_loop.xml │ │ ├── flow_chart_of_program_that_contains_a_while_loop.png │ │ ├── flow_chart_of_program_that_contains_a_while_loop.xml │ │ ├── four_flow_chart_shapes.png │ │ └── four_flow_chart_shapes.xml ├── 09-Matricies-and-Arrays │ ├── 09.00-Introduction.md │ ├── 09.01-Installing-NumPy.md │ ├── 09.02-NumPy.md │ ├── 09.03-Array-Creation.md │ ├── 09.04-Array-Indexing.md │ ├── 09.05-Array-Slicing.md │ ├── 09.06-Array-Opperations.md │ ├── 09.07-Systems-of-Linear-Equations.md │ ├── 09.08-Summary.md │ └── 09.10-Review-Questions.md ├── 10-Symbolic-Math │ ├── 10.00-Introduction.md │ ├── 10.01-SymPy.md │ ├── 10.02-Defining-Varaibles.md │ ├── 10.03-Expressions-and-Substitutions.md │ ├── 10.04-Equations.md │ ├── 10.05-Solving-Equations.md │ ├── 10.06-Solving-Two-Equations-for-Two-Unknowns.md │ ├── 10.07-Summary.md │ ├── 10.08-Review-Questions.md │ └── images │ │ └── statics_problem_diagram.png ├── 11-Python-and-External-Hardware │ ├── 11.00-Introduction.md │ ├── 11.01-PySerial.md │ ├── 11.02-Bytes-and-Unicode-Strings.md │ ├── 11.03-Controlling-an-LED.md │ ├── 11.04-Reading-a-Sensor-with-Python.md │ ├── 11.05-Summary.md │ ├── 11.06-Project-Ideas.md │ └── images │ │ ├── Arduino_LED_fritzing.png │ │ ├── Arrow_to_Upload.png │ │ ├── Check_to_Verify.png │ │ ├── Examples_Com_PhysicalPixel.png │ │ ├── SerialMonitor_H.png │ │ ├── Tools_SerialMonitor.png │ │ ├── Tools_SerialPlotter.png │ │ ├── arduino_LED.png │ │ ├── arduino_LED.svg │ │ ├── arduino_download_page.png │ │ ├── arduino_led.fzz │ │ ├── arduino_potentiometer.fzz │ │ ├── arduino_potentiometer.svg │ │ ├── download_Arduino_IDE.png │ │ ├── file-examples-communication-physicalpixel.png │ │ ├── matplotlib_potentiometer_plot.png │ │ ├── redboard_LED.fzz │ │ ├── redboard_LED_bb.png │ │ ├── redboard_LED_potentiometer.fzz │ │ ├── redboard_pot_led_fritzing.png │ │ ├── serial_monitor_L.png │ │ ├── serial_monitor_output.png │ │ └── serial_plotter_output.png ├── 12-MicroPython │ ├── 12.00-Introduction.md │ ├── 12.01-What-is-MicroPython.md │ ├── 12.02-Installing-MicroPython.md │ ├── 12.03-MicroPython-REPL.md │ ├── 12.04-Blinking-a-LED.md │ ├── 12.05-Reading-a-Sensor.md │ ├── 12.06-Uploading-Code.md │ ├── 12.07-Summary.md │ ├── 12.08-Project-Ideas.md │ └── images │ │ ├── Anaconda_Prompt.PNG │ │ ├── Anaconda_choose_python_version.PNG │ │ ├── Anaconda_downloads_page.PNG │ │ ├── MicroPython_in_jupyter_notebook.png │ │ ├── REPL_prompt.PNG │ │ ├── active_new_conda_env.PNG │ │ ├── bin_file_to_new_directory.PNG │ │ ├── bin_in_dir.PNG │ │ ├── conda_activate.PNG │ │ ├── conda_create_new_virtualenv.PNG │ │ ├── conda_install_mpy-repl-tool.jpg │ │ ├── conda_list.PNG │ │ ├── conda_there-jupyter-setup.png │ │ ├── device_manager_menu.png │ │ ├── download_putty.PNG │ │ ├── download_silabs_driver.PNG │ │ ├── downloads_folder.PNG │ │ ├── esptool_erase_flash.PNG │ │ ├── esptool_help.PNG │ │ ├── esptool_write_flash.PNG │ │ ├── feather_huzzah_temp_sensor_fritzing.png │ │ ├── find_device_manager.png │ │ ├── firmware_download_page.PNG │ │ ├── import_port_diag.PNG │ │ ├── micropython_modules.png │ │ ├── mkdir_micropython.PNG │ │ ├── pip_install_esptool.PNG │ │ ├── putty_config.PNG │ │ ├── putty_in_start_menu.png │ │ ├── sys_dot_implementation_and_platform.PNG │ │ ├── sys_dot_platform.PNG │ │ └── there.jupyter-setup.png ├── 99-Appendix │ ├── 99.00-Appendix.md │ ├── 99.01-Reserved-and-Key-Words-in-Python.md │ ├── 99.02-ASCII-Character-Codes.md │ ├── 99.03-Virtual-Environments.md │ ├── 99.04-NumPy-Math-Functions.md │ ├── 99.05-Git-and-GitHub.md │ ├── 99.06-LaTeX-Math.md │ ├── 99.07-Problem-Solving-with-Python-Book-Construction.md │ ├── 99.08-Contributions.md │ ├── 99.09-Cover-Artwork.md │ └── 99.10-About-the-Author.md ├── figures │ └── anaconda_download_page.png └── index.md ├── mkdocs.yml └── mkdocs_config.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/bookn.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/.idea/bookn.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/README.md -------------------------------------------------------------------------------- /conversion_tools/TOC.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/TOC.yml -------------------------------------------------------------------------------- /conversion_tools/copy_images_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/copy_images_dir.py -------------------------------------------------------------------------------- /conversion_tools/filter_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/filter_links.py -------------------------------------------------------------------------------- /conversion_tools/make_mkdocs_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/make_mkdocs_yaml.py -------------------------------------------------------------------------------- /conversion_tools/md_not_converted.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/md_not_converted.tpl -------------------------------------------------------------------------------- /conversion_tools/nb2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/nb2html.py -------------------------------------------------------------------------------- /conversion_tools/nb2latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/nb2latex.py -------------------------------------------------------------------------------- /conversion_tools/nb2mkdocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/nb2mkdocs.py -------------------------------------------------------------------------------- /conversion_tools/nb_list_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/nb_list_tools.py -------------------------------------------------------------------------------- /conversion_tools/remove_section_from_TOC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/remove_section_from_TOC.ipynb -------------------------------------------------------------------------------- /conversion_tools/templates/book_PUU.tplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/templates/book_PUU.tplx -------------------------------------------------------------------------------- /conversion_tools/templates/noprompts.tplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/templates/noprompts.tplx -------------------------------------------------------------------------------- /conversion_tools/test_latex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/test_latex.tex -------------------------------------------------------------------------------- /conversion_tools/test_output.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/test_output.tex -------------------------------------------------------------------------------- /conversion_tools/test_output2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/test_output2.tex -------------------------------------------------------------------------------- /conversion_tools/test_output3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/test_output3.tex -------------------------------------------------------------------------------- /conversion_tools/test_output4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/test_output4.tex -------------------------------------------------------------------------------- /conversion_tools/test_output5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/test_output5.tex -------------------------------------------------------------------------------- /conversion_tools/yaml_TOC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/conversion_tools/yaml_TOC.py -------------------------------------------------------------------------------- /notebooks/00-Preface/00.00-Motivation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/00-Preface/00.00-Motivation.ipynb -------------------------------------------------------------------------------- /notebooks/00-Preface/00.02-Acknowledgments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/00-Preface/00.02-Acknowledgments.ipynb -------------------------------------------------------------------------------- /notebooks/00-Preface/00.03-Supporting-Materials.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/00-Preface/00.03-Supporting-Materials.ipynb -------------------------------------------------------------------------------- /notebooks/00-Preface/00.04-Formatting-Conventions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/00-Preface/00.04-Formatting-Conventions.ipynb -------------------------------------------------------------------------------- /notebooks/00-Preface/00.05-Errata.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/00-Preface/00.05-Errata.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/01.00-Welcome.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/01.00-Welcome.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/01.01-Why-Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/01.01-Why-Python.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/01.02-The-Anaconda-Distribution-of-Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/01.02-The-Anaconda-Distribution-of-Python.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/01.03-Installing-Anaconda-on-Windows.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/01.03-Installing-Anaconda-on-Windows.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/01.04-Installing-Anaconda-on-MacOS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/01.04-Installing-Anaconda-on-MacOS.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/01.05-Installing-Anaconda-on-Linux.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/01.05-Installing-Anaconda-on-Linux.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/01.06-Installing-Python-from-Python-dot-org.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/01.06-Installing-Python-from-Python-dot-org.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/01.07-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/01.07-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/01.08-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/01.08-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/Anaconda_download_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/Anaconda_download_linux.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_agree_to_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_agree_to_license.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_download_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_download_mac.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_download_mac_ask_for_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_download_mac_ask_for_email.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_download_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_download_page.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_downloading.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_enter_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_enter_email.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_from_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_from_start_menu.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_install_linux_copy_link_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_install_linux_copy_link_address.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_installer_advanced_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_installer_advanced_options.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_installer_click_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_installer_click_next.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_path2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_path2.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_prompt.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_python3_or_python2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_python3_or_python2.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_run_installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_run_installer.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_select_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_select_windows.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/anaconda_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/anaconda_window.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/conda_import_this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/conda_import_this.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/conda_import_this_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/conda_import_this_output.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/conda_in_windows_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/conda_in_windows_start_menu.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/conda_prompt_type_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/conda_prompt_type_python.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/conda_type_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/conda_type_python.png -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/python_dot_org_macos_download.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/python_dot_org_macos_download.PNG -------------------------------------------------------------------------------- /notebooks/01-Orientation/images/python_dot_org_windows_download.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/01-Orientation/images/python_dot_org_windows_download.PNG -------------------------------------------------------------------------------- /notebooks/02-The-Python-REPL/02.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/02-The-Python-REPL/02.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/02-The-Python-REPL/02.01-Python-as-a-Calculator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/02-The-Python-REPL/02.01-Python-as-a-Calculator.ipynb -------------------------------------------------------------------------------- /notebooks/02-The-Python-REPL/02.02-Variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/02-The-Python-REPL/02.02-Variables.ipynb -------------------------------------------------------------------------------- /notebooks/02-The-Python-REPL/02.03-String-Operations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/02-The-Python-REPL/02.03-String-Operations.ipynb -------------------------------------------------------------------------------- /notebooks/02-The-Python-REPL/02.04-Print-Statements.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/02-The-Python-REPL/02.04-Print-Statements.ipynb -------------------------------------------------------------------------------- /notebooks/02-The-Python-REPL/02.05-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/02-The-Python-REPL/02.05-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/02-The-Python-REPL/02.06-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/02-The-Python-REPL/02.06-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/03.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/03.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/03.01-Numeric-Data-Types.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/03.01-Numeric-Data-Types.ipynb -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/03.02-Boolean-Data-Type.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/03.02-Boolean-Data-Type.ipynb -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/03.03-Strings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/03.03-Strings.ipynb -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/03.04-Lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/03.04-Lists.ipynb -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/03.05-Dictionaries-and-Tuples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/03.05-Dictionaries-and-Tuples.ipynb -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/03.06-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/03.06-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/03.07-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/03.07-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/images/reverse_string_indexing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/images/reverse_string_indexing.png -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/images/reverse_string_indexing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/images/reverse_string_indexing.xml -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/images/string_indexing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/images/string_indexing.png -------------------------------------------------------------------------------- /notebooks/03-Data-Types-and-Variables/images/string_indexing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/03-Data-Types-and-Variables/images/string_indexing.xml -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.01-What-is-a-Jupyter-Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.01-What-is-a-Jupyter-Notebook.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.02-Why-Jupyter-Notebooks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.02-Why-Jupyter-Notebooks.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.03-Installing-Juypter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.03-Installing-Juypter.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.04-Opening-a-Jupyter-Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.04-Opening-a-Jupyter-Notebook.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.05-The-Jupyter-Notebook-Interface.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.05-The-Jupyter-Notebook-Interface.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.06-Magic-Cells.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.06-Magic-Cells.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.07-Getting-Help-in-a-Jupyter-Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.07-Getting-Help-in-a-Jupyter-Notebook.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.08-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.08-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/04.10-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/04.10-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/hello.py -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/Anaconda_Prompt_Jupyter_Notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/Anaconda_Prompt_Jupyter_Notebook.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/Jupyter_Home_Browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/Jupyter_Home_Browser.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/anaconda_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/anaconda_start_menu.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/change_cell_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/change_cell_type.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/click_change_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/click_change_name.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/code_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/code_cell.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/downloading_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/downloading_complete.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/engineering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/engineering.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/file_download_as_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/file_download_as_notebook.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/file_make_a_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/file_make_a_copy.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/insert_cell_above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/insert_cell_above.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/jupyter_notebook_anaconda_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/jupyter_notebook_anaconda_prompt.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/jupyter_notebook_dot_py_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/jupyter_notebook_dot_py_file.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/jupyter_notebook_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/jupyter_notebook_example.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/jupyter_notebook_export_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/jupyter_notebook_export_options.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/kernel_restart_and_clear_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/kernel_restart_and_clear_output.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/markdown_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/markdown_cell.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/new_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/new_notebook.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/new_notebook_from_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/new_notebook_from_browser.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/notebook_file_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/notebook_file_browser.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/notebook_file_browser_click_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/notebook_file_browser_click_folder.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/notebook_file_browser_click_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/notebook_file_browser_click_notebook.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/notebook_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/notebook_json.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/output_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/output_cell.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/rename_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/rename_dialog.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/rename_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/rename_notebook.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/rename_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/rename_window.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/run_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/run_cell.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/run_import_this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/run_import_this.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/save_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/save_notebook.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/windows_start_anaconda_navigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/windows_start_anaconda_navigator.png -------------------------------------------------------------------------------- /notebooks/04-Jupyter-Notebooks/images/windows_start_jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/04-Jupyter-Notebooks/images/windows_start_jupyter_notebook.png -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/05.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/05.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/05.01-Why-functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/05.01-Why-functions.ipynb -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/05.02-First-function.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/05.02-First-function.ipynb -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/05.03-Functions-with-multiple-arguments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/05.03-Functions-with-multiple-arguments.ipynb -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/05.04-Functions-with-default-arguments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/05.04-Functions-with-default-arguments.ipynb -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/05.06-Docstrings-in-Functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/05.06-Docstrings-in-Functions.ipynb -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/05.07-Positional-and-Keyword-Arguments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/05.07-Positional-and-Keyword-Arguments.ipynb -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/05.08-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/05.08-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/05.09-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/05.09-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/05-Functions-and-Modules/myfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/05-Functions-and-Modules/myfunctions.py -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.01-What-is-Matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.01-What-is-Matplotlib.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.02-Installing Matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.02-Installing Matplotlib.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.03-Line-Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.03-Line-Plots.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.04-Saving-Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.04-Saving-Plots.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.05-Multi-Line-Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.05-Multi-Line-Plots.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.06-Bar-Charts-and-Pie-Charts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.06-Bar-Charts-and-Pie-Charts.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.07-Error-Bars.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.07-Error-Bars.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.08-Histograms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.08-Histograms.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.09-Box-Plots-and-Violin-Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.09-Box-Plots-and-Violin-Plots.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.10-Scatter-Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.10-Scatter-Plots.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.11-Plot-Annotations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.11-Plot-Annotations.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.12-Subplots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.12-Subplots.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.13-Plot-Styles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.13-Plot-Styles.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.14-Contour-Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.14-Contour-Plots.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.15-Quiver-and-Stream-Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.15-Quiver-and-Stream-Plots.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.16-3D-Surface-Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.16-3D-Surface-Plots.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.17-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.17-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/06.18-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/06.18-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/3_quiver_plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/3_quiver_plots.png -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/bar_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/bar_plot.png -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/bar_plot_with_error_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/bar_plot_with_error_bars.png -------------------------------------------------------------------------------- /notebooks/06-Plotting-with-Matplotlib/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/06-Plotting-with-Matplotlib/plot.png -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/07.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/07.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/07.01-User-Input.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/07.01-User-Input.ipynb -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/07.02-If-Statements.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/07.02-If-Statements.ipynb -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/07.02-Selection-Statements.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/07.02-Selection-Statements.ipynb -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/07.04-If-Else-Statements.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/07.04-If-Else-Statements.ipynb -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/07.05-Try-Except-Statements.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/07.05-Try-Except-Statements.ipynb -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/07.06-Flowcharts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/07.06-Flowcharts.ipynb -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/07.07-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/07.07-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/07.08-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/07.08-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/images/flow_chart_calculation_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/images/flow_chart_calculation_program.png -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/images/flow_chart_calculation_program.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/images/flow_chart_calculation_program.xml -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/images/flow_chart_simple_print_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/images/flow_chart_simple_print_program.png -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/images/flow_chart_simple_print_program.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/images/flow_chart_simple_print_program.xml -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/images/flow_chart_simple_user_input_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/images/flow_chart_simple_user_input_program.png -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/images/flow_chart_simple_user_input_program.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/images/flow_chart_simple_user_input_program.xml -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/images/flow_chart_user_input_program.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/images/flow_chart_user_input_program.xml -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/images/four_flow_chart_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/images/four_flow_chart_shapes.png -------------------------------------------------------------------------------- /notebooks/07-If-Else-Try-Except/images/four_flow_chart_shapes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/07-If-Else-Try-Except/images/four_flow_chart_shapes.xml -------------------------------------------------------------------------------- /notebooks/08-Loops/08.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/08.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/08-Loops/08.01-For-Loops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/08.01-For-Loops.ipynb -------------------------------------------------------------------------------- /notebooks/08-Loops/08.02-While-Loops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/08.02-While-Loops.ipynb -------------------------------------------------------------------------------- /notebooks/08-Loops/08.03-Break-and-Continue.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/08.03-Break-and-Continue.ipynb -------------------------------------------------------------------------------- /notebooks/08-Loops/08.04-Flowcharts-Describing-Loops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/08.04-Flowcharts-Describing-Loops.ipynb -------------------------------------------------------------------------------- /notebooks/08-Loops/08.05-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/08.05-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/08-Loops/08.06-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/08.06-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/08-Loops/images/flow_chart_of_program_that_contains_a_for_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/images/flow_chart_of_program_that_contains_a_for_loop.png -------------------------------------------------------------------------------- /notebooks/08-Loops/images/flow_chart_of_program_that_contains_a_for_loop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/images/flow_chart_of_program_that_contains_a_for_loop.xml -------------------------------------------------------------------------------- /notebooks/08-Loops/images/flow_chart_of_program_that_contains_a_while_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/images/flow_chart_of_program_that_contains_a_while_loop.png -------------------------------------------------------------------------------- /notebooks/08-Loops/images/flow_chart_of_program_that_contains_a_while_loop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/images/flow_chart_of_program_that_contains_a_while_loop.xml -------------------------------------------------------------------------------- /notebooks/08-Loops/images/four_flow_chart_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/images/four_flow_chart_shapes.png -------------------------------------------------------------------------------- /notebooks/08-Loops/images/four_flow_chart_shapes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/08-Loops/images/four_flow_chart_shapes.xml -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.01-Installing-NumPy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.01-Installing-NumPy.ipynb -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.02-NumPy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.02-NumPy.ipynb -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.03-Array-Creation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.03-Array-Creation.ipynb -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.04-Array-Indexing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.04-Array-Indexing.ipynb -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.05-Array-Slicing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.05-Array-Slicing.ipynb -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.06-Array-Opperations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.06-Array-Opperations.ipynb -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.07-Systems-of-Linear-Equations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.07-Systems-of-Linear-Equations.ipynb -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.08-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.08-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/09-Matricies-and-Arrays/09.10-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/09-Matricies-and-Arrays/09.10-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/10.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/10.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/10.01-SymPy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/10.01-SymPy.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/10.02-Defining-Varaibles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/10.02-Defining-Varaibles.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/10.03-Expressions-and-Substitutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/10.03-Expressions-and-Substitutions.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/10.04-Equations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/10.04-Equations.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/10.05-Solving-Equations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/10.05-Solving-Equations.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/10.06-Solving-Two-Equations-for-Two-Unknowns.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/10.06-Solving-Two-Equations-for-Two-Unknowns.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/10.07-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/10.07-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/10.08-Review-Questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/10.08-Review-Questions.ipynb -------------------------------------------------------------------------------- /notebooks/10-Symbolic-Math/images/statics_problem_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/10-Symbolic-Math/images/statics_problem_diagram.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/11.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/11.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/11.01-PySerial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/11.01-PySerial.ipynb -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/11.02-Bytes-and-Unicode-Strings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/11.02-Bytes-and-Unicode-Strings.ipynb -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/11.03-Controlling-an-LED.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/11.03-Controlling-an-LED.ipynb -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/11.05-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/11.05-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/11.06-Project-Ideas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/11.06-Project-Ideas.ipynb -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/Arduino_LED_fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/Arduino_LED_fritzing.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/Arrow_to_Upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/Arrow_to_Upload.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/Check_to_Verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/Check_to_Verify.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/Examples_Com_PhysicalPixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/Examples_Com_PhysicalPixel.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/SerialMonitor_H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/SerialMonitor_H.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/Tools_SerialMonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/Tools_SerialMonitor.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/Tools_SerialPlotter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/Tools_SerialPlotter.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/arduino_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/arduino_LED.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/arduino_LED.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/arduino_LED.svg -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/arduino_download_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/arduino_download_page.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/arduino_led.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/arduino_led.fzz -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/arduino_potentiometer.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/arduino_potentiometer.fzz -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/arduino_potentiometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/arduino_potentiometer.svg -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/download_Arduino_IDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/download_Arduino_IDE.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/redboard_LED.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/redboard_LED.fzz -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/redboard_LED_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/redboard_LED_bb.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/redboard_LED_potentiometer.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/redboard_LED_potentiometer.fzz -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/redboard_pot_led_fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/redboard_pot_led_fritzing.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/serial_monitor_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/serial_monitor_L.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/serial_monitor_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/serial_monitor_output.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/images/serial_plotter_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/images/serial_plotter_output.png -------------------------------------------------------------------------------- /notebooks/11-Python-and-External-Hardware/potentiometer_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/11-Python-and-External-Hardware/potentiometer_read.ino -------------------------------------------------------------------------------- /notebooks/12-MicroPython/12.00-Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/12.00-Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/12-MicroPython/12.01-What-is-MicroPython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/12.01-What-is-MicroPython.ipynb -------------------------------------------------------------------------------- /notebooks/12-MicroPython/12.02-Installing-MicroPython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/12.02-Installing-MicroPython.ipynb -------------------------------------------------------------------------------- /notebooks/12-MicroPython/12.03-MicroPython-REPL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/12.03-MicroPython-REPL.ipynb -------------------------------------------------------------------------------- /notebooks/12-MicroPython/12.04-Blinking-a-LED.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/12.04-Blinking-a-LED.ipynb -------------------------------------------------------------------------------- /notebooks/12-MicroPython/12.05-Reading-a-Sensor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/12.05-Reading-a-Sensor.ipynb -------------------------------------------------------------------------------- /notebooks/12-MicroPython/12.06-Uploading-Code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/12.06-Uploading-Code.ipynb -------------------------------------------------------------------------------- /notebooks/12-MicroPython/12.07-Summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/12.07-Summary.ipynb -------------------------------------------------------------------------------- /notebooks/12-MicroPython/12.08-Project-Ideas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/12.08-Project-Ideas.ipynb -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/Anaconda_Prompt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/Anaconda_Prompt.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/Anaconda_choose_python_version.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/Anaconda_choose_python_version.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/Anaconda_downloads_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/Anaconda_downloads_page.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/MicroPython_in_jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/MicroPython_in_jupyter_notebook.png -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/REPL_prompt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/REPL_prompt.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/active_new_conda_env.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/active_new_conda_env.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/bin_file_to_new_directory.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/bin_file_to_new_directory.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/bin_in_dir.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/bin_in_dir.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/conda_activate.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/conda_activate.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/conda_create_new_virtualenv.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/conda_create_new_virtualenv.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/conda_install_mpy-repl-tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/conda_install_mpy-repl-tool.jpg -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/conda_list.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/conda_list.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/conda_there-jupyter-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/conda_there-jupyter-setup.png -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/device_manager_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/device_manager_menu.png -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/download_putty.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/download_putty.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/download_silabs_driver.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/download_silabs_driver.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/downloads_folder.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/downloads_folder.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/esptool_erase_flash.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/esptool_erase_flash.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/esptool_help.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/esptool_help.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/esptool_write_flash.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/esptool_write_flash.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/feather_huzzah_temp_sensor_fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/feather_huzzah_temp_sensor_fritzing.png -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/find_device_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/find_device_manager.png -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/firmware_download_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/firmware_download_page.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/import_port_diag.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/import_port_diag.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/micropython_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/micropython_modules.png -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/mkdir_micropython.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/mkdir_micropython.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/pip_install_esptool.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/pip_install_esptool.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/putty_config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/putty_config.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/putty_in_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/putty_in_start_menu.png -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/sys_dot_implementation_and_platform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/sys_dot_implementation_and_platform.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/sys_dot_platform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/sys_dot_platform.PNG -------------------------------------------------------------------------------- /notebooks/12-MicroPython/images/there.jupyter-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/12-MicroPython/images/there.jupyter-setup.png -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.00-Appendix.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.00-Appendix.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.01-Reserved-and-Key-Words-in-Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.01-Reserved-and-Key-Words-in-Python.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.02-ASCII-Character-Codes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.02-ASCII-Character-Codes.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.03-Virtual-Environments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.03-Virtual-Environments.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.04-NumPy-Math-Functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.04-NumPy-Math-Functions.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.05-Git-and-GitHub.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.05-Git-and-GitHub.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.06-LaTeX-Math.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.06-LaTeX-Math.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.07-Problem-Solving-with-Python-Book-Construction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.07-Problem-Solving-with-Python-Book-Construction.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.08-Contributions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.08-Contributions.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.09-Cover-Artwork.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.09-Cover-Artwork.ipynb -------------------------------------------------------------------------------- /notebooks/99-Appendix/99.10-About-the-Author.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/99-Appendix/99.10-About-the-Author.ipynb -------------------------------------------------------------------------------- /notebooks/TOC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/TOC.ipynb -------------------------------------------------------------------------------- /notebooks/figures/anaconda_download_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/notebooks/figures/anaconda_download_page.png -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6-Edition-2018-01-09.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6-Edition-2018-01-09.synctex(busy): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/Problem-Solving-with-Python-3.6-Edition-2018-01-09.synctex(busy) -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6-Edition-2018-01-09.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/Problem-Solving-with-Python-3.6-Edition-2018-01-09.tex -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6-Edition-2018-01-09.toc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.synctex(busy): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.synctex(busy) -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.tex -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6.1-Edition-2018-01-10.toc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6.2-Edition.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/Problem-Solving-with-Python-3.6.2-Edition.aux -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6.2-Edition.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/Problem-Solving-with-Python-3.6.2-Edition.out -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6.2-Edition.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/Problem-Solving-with-Python-3.6.2-Edition.tex -------------------------------------------------------------------------------- /pdf/Problem-Solving-with-Python-3.6.2-Edition.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/Problem-Solving-with-Python-3.6.2-Edition.toc -------------------------------------------------------------------------------- /pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/README.md -------------------------------------------------------------------------------- /pdf/combined_files/combined_267_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_267_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_279_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_279_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_285_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_285_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_289_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_289_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_291_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_291_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_304_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_304_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_307_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_307_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_308_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_308_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_314_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_314_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_318_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_318_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_323_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_323_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_328_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_328_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_329_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_329_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_333_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_333_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_338_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_338_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_343_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_343_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_348_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_348_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_350_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_350_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_351_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_351_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_352_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_352_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_353_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_353_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_360_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_360_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_363_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_363_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_366_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_366_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_369_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_369_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_377_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_377_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_384_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_384_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_386_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_386_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_388_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_388_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_390_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_390_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_393_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_393_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_398_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_398_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_401_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_401_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_403_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_403_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_405_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_405_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_412_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_412_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_415_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_415_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_418_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_418_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_421_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_421_0.png -------------------------------------------------------------------------------- /pdf/combined_files/combined_549_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/combined_files/combined_549_0.png -------------------------------------------------------------------------------- /pdf/copywrite_page.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/copywrite_page.tex -------------------------------------------------------------------------------- /pdf/dedication_page.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/dedication_page.tex -------------------------------------------------------------------------------- /pdf/images/Anaconda_Prompt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Anaconda_Prompt.PNG -------------------------------------------------------------------------------- /pdf/images/Anaconda_Prompt_Jupyter_Notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Anaconda_Prompt_Jupyter_Notebook.png -------------------------------------------------------------------------------- /pdf/images/Anaconda_choose_python_version.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Anaconda_choose_python_version.PNG -------------------------------------------------------------------------------- /pdf/images/Anaconda_downloads_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Anaconda_downloads_page.PNG -------------------------------------------------------------------------------- /pdf/images/Arduino_LED_fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Arduino_LED_fritzing.png -------------------------------------------------------------------------------- /pdf/images/Arrow_to_Upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Arrow_to_Upload.png -------------------------------------------------------------------------------- /pdf/images/Check_to_Verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Check_to_Verify.png -------------------------------------------------------------------------------- /pdf/images/Examples_Com_PhysicalPixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Examples_Com_PhysicalPixel.png -------------------------------------------------------------------------------- /pdf/images/Jupyter_Home_Browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Jupyter_Home_Browser.png -------------------------------------------------------------------------------- /pdf/images/MicroPython_in_jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/MicroPython_in_jupyter_notebook.png -------------------------------------------------------------------------------- /pdf/images/REPL_prompt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/REPL_prompt.PNG -------------------------------------------------------------------------------- /pdf/images/SerialMonitor_H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/SerialMonitor_H.png -------------------------------------------------------------------------------- /pdf/images/Tools_SerialMonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Tools_SerialMonitor.png -------------------------------------------------------------------------------- /pdf/images/Tools_SerialPlotter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/Tools_SerialPlotter.png -------------------------------------------------------------------------------- /pdf/images/active_new_conda_env.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/active_new_conda_env.PNG -------------------------------------------------------------------------------- /pdf/images/anaconda_agree_to_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_agree_to_license.png -------------------------------------------------------------------------------- /pdf/images/anaconda_download_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_download_mac.png -------------------------------------------------------------------------------- /pdf/images/anaconda_download_mac_ask_for_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_download_mac_ask_for_email.png -------------------------------------------------------------------------------- /pdf/images/anaconda_download_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_download_page.png -------------------------------------------------------------------------------- /pdf/images/anaconda_downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_downloading.png -------------------------------------------------------------------------------- /pdf/images/anaconda_enter_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_enter_email.png -------------------------------------------------------------------------------- /pdf/images/anaconda_from_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_from_start_menu.png -------------------------------------------------------------------------------- /pdf/images/anaconda_installer_advanced_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_installer_advanced_options.png -------------------------------------------------------------------------------- /pdf/images/anaconda_installer_click_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_installer_click_next.png -------------------------------------------------------------------------------- /pdf/images/anaconda_path2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_path2.png -------------------------------------------------------------------------------- /pdf/images/anaconda_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_prompt.png -------------------------------------------------------------------------------- /pdf/images/anaconda_python3_or_python2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_python3_or_python2.png -------------------------------------------------------------------------------- /pdf/images/anaconda_run_installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_run_installer.png -------------------------------------------------------------------------------- /pdf/images/anaconda_select_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_select_windows.png -------------------------------------------------------------------------------- /pdf/images/anaconda_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/anaconda_window.png -------------------------------------------------------------------------------- /pdf/images/arduino_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/arduino_LED.png -------------------------------------------------------------------------------- /pdf/images/arduino_LED.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/arduino_LED.svg -------------------------------------------------------------------------------- /pdf/images/arduino_led.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/arduino_led.fzz -------------------------------------------------------------------------------- /pdf/images/arduino_potentiometer.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/arduino_potentiometer.fzz -------------------------------------------------------------------------------- /pdf/images/arduino_potentiometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/arduino_potentiometer.svg -------------------------------------------------------------------------------- /pdf/images/bin_file_to_new_directory.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/bin_file_to_new_directory.PNG -------------------------------------------------------------------------------- /pdf/images/bin_in_dir.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/bin_in_dir.PNG -------------------------------------------------------------------------------- /pdf/images/conda_activate.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_activate.PNG -------------------------------------------------------------------------------- /pdf/images/conda_create_new_virtualenv.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_create_new_virtualenv.PNG -------------------------------------------------------------------------------- /pdf/images/conda_import_this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_import_this.png -------------------------------------------------------------------------------- /pdf/images/conda_import_this_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_import_this_output.png -------------------------------------------------------------------------------- /pdf/images/conda_in_windows_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_in_windows_start_menu.png -------------------------------------------------------------------------------- /pdf/images/conda_install_mpy-repl-tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_install_mpy-repl-tool.jpg -------------------------------------------------------------------------------- /pdf/images/conda_list.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_list.PNG -------------------------------------------------------------------------------- /pdf/images/conda_prompt_type_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_prompt_type_python.png -------------------------------------------------------------------------------- /pdf/images/conda_there-jupyter-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_there-jupyter-setup.png -------------------------------------------------------------------------------- /pdf/images/conda_type_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/conda_type_python.png -------------------------------------------------------------------------------- /pdf/images/device_manager_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/device_manager_menu.png -------------------------------------------------------------------------------- /pdf/images/download_Arduino_IDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/download_Arduino_IDE.png -------------------------------------------------------------------------------- /pdf/images/download_putty.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/download_putty.PNG -------------------------------------------------------------------------------- /pdf/images/download_silabs_driver.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/download_silabs_driver.PNG -------------------------------------------------------------------------------- /pdf/images/downloads_folder.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/downloads_folder.PNG -------------------------------------------------------------------------------- /pdf/images/engineering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/engineering.png -------------------------------------------------------------------------------- /pdf/images/esptool_erase_flash.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/esptool_erase_flash.PNG -------------------------------------------------------------------------------- /pdf/images/esptool_help.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/esptool_help.PNG -------------------------------------------------------------------------------- /pdf/images/esptool_write_flash.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/esptool_write_flash.PNG -------------------------------------------------------------------------------- /pdf/images/feather_huzzah_temp_sensor_fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/feather_huzzah_temp_sensor_fritzing.png -------------------------------------------------------------------------------- /pdf/images/file-examples-communication-physicalpixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/file-examples-communication-physicalpixel.png -------------------------------------------------------------------------------- /pdf/images/find_device_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/find_device_manager.png -------------------------------------------------------------------------------- /pdf/images/firmware_download_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/firmware_download_page.PNG -------------------------------------------------------------------------------- /pdf/images/import_port_diag.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/import_port_diag.PNG -------------------------------------------------------------------------------- /pdf/images/jupyter_notebook_dot_py_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/jupyter_notebook_dot_py_file.png -------------------------------------------------------------------------------- /pdf/images/jupyter_notebook_export_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/jupyter_notebook_export_options.png -------------------------------------------------------------------------------- /pdf/images/jupyter_notebook_markdown_cells_as_comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/jupyter_notebook_markdown_cells_as_comments.png -------------------------------------------------------------------------------- /pdf/images/micropython_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/micropython_modules.png -------------------------------------------------------------------------------- /pdf/images/mkdir_micropython.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/mkdir_micropython.PNG -------------------------------------------------------------------------------- /pdf/images/pip_install_esptool.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/pip_install_esptool.PNG -------------------------------------------------------------------------------- /pdf/images/putty_config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/putty_config.PNG -------------------------------------------------------------------------------- /pdf/images/putty_in_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/putty_in_start_menu.png -------------------------------------------------------------------------------- /pdf/images/redboard_pot_led_fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/redboard_pot_led_fritzing.png -------------------------------------------------------------------------------- /pdf/images/serial_monitor_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/serial_monitor_output.png -------------------------------------------------------------------------------- /pdf/images/serial_plotter_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/serial_plotter_output.png -------------------------------------------------------------------------------- /pdf/images/sys_dot_implementation_and_platform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/sys_dot_implementation_and_platform.PNG -------------------------------------------------------------------------------- /pdf/images/sys_dot_platform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/sys_dot_platform.PNG -------------------------------------------------------------------------------- /pdf/images/there.jupyter-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/images/there.jupyter-setup.png -------------------------------------------------------------------------------- /pdf/pdfout3.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/pdfout3.aux -------------------------------------------------------------------------------- /pdf/pdfout3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/pdfout3.out -------------------------------------------------------------------------------- /pdf/pdfout3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/pdfout3.tex -------------------------------------------------------------------------------- /pdf/pdfout3.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/pdfout3.toc -------------------------------------------------------------------------------- /pdf/pdfout4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/pdf/pdfout4.tex -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6 2 | -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/README.md -------------------------------------------------------------------------------- /website/docs/00-Preface/00.00-Motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/00-Preface/00.00-Motivation.md -------------------------------------------------------------------------------- /website/docs/00-Preface/00.02-Acknowledgments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/00-Preface/00.02-Acknowledgments.md -------------------------------------------------------------------------------- /website/docs/00-Preface/00.03-Supporting-Materials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/00-Preface/00.03-Supporting-Materials.md -------------------------------------------------------------------------------- /website/docs/00-Preface/00.04-Formatting-Conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/00-Preface/00.04-Formatting-Conventions.md -------------------------------------------------------------------------------- /website/docs/00-Preface/00.05-Errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/00-Preface/00.05-Errata.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/01.00-Welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/01.00-Welcome.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/01.01-Why-Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/01.01-Why-Python.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/01.02-The-Anaconda-Distribution-of-Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/01.02-The-Anaconda-Distribution-of-Python.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/01.03-Installing-Anaconda-on-Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/01.03-Installing-Anaconda-on-Windows.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/01.04-Installing-Anaconda-on-MacOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/01.04-Installing-Anaconda-on-MacOS.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/01.05-Installing-Anaconda-on-Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/01.05-Installing-Anaconda-on-Linux.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/01.06-Installing-Python-from-Python-dot-org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/01.06-Installing-Python-from-Python-dot-org.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/01.07-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/01.07-Summary.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/01.08-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/01.08-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/Anaconda_download_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/Anaconda_download_linux.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_agree_to_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_agree_to_license.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_download_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_download_mac.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_download_mac_ask_for_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_download_mac_ask_for_email.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_download_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_download_page.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_downloading.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_enter_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_enter_email.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_from_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_from_start_menu.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_install_linux_copy_link_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_install_linux_copy_link_address.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_installer_advanced_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_installer_advanced_options.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_installer_click_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_installer_click_next.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_path2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_path2.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_prompt.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_python3_or_python2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_python3_or_python2.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_run_installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_run_installer.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_select_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_select_windows.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/anaconda_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/anaconda_window.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/conda_import_this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/conda_import_this.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/conda_import_this_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/conda_import_this_output.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/conda_in_windows_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/conda_in_windows_start_menu.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/conda_prompt_type_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/conda_prompt_type_python.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/conda_type_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/conda_type_python.png -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/python_dot_org_macos_download.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/python_dot_org_macos_download.PNG -------------------------------------------------------------------------------- /website/docs/01-Orientation/images/python_dot_org_windows_download.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/01-Orientation/images/python_dot_org_windows_download.PNG -------------------------------------------------------------------------------- /website/docs/02-The-Python-REPL/02.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/02-The-Python-REPL/02.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/02-The-Python-REPL/02.01-Python-as-a-Calculator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/02-The-Python-REPL/02.01-Python-as-a-Calculator.md -------------------------------------------------------------------------------- /website/docs/02-The-Python-REPL/02.02-Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/02-The-Python-REPL/02.02-Variables.md -------------------------------------------------------------------------------- /website/docs/02-The-Python-REPL/02.03-String-Operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/02-The-Python-REPL/02.03-String-Operations.md -------------------------------------------------------------------------------- /website/docs/02-The-Python-REPL/02.04-Print-Statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/02-The-Python-REPL/02.04-Print-Statements.md -------------------------------------------------------------------------------- /website/docs/02-The-Python-REPL/02.05-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/02-The-Python-REPL/02.05-Summary.md -------------------------------------------------------------------------------- /website/docs/02-The-Python-REPL/02.06-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/02-The-Python-REPL/02.06-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/03.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/03.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/03.01-Numeric-Data-Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/03.01-Numeric-Data-Types.md -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/03.02-Boolean-Data-Type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/03.02-Boolean-Data-Type.md -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/03.03-Strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/03.03-Strings.md -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/03.04-Lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/03.04-Lists.md -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/03.05-Dictionaries-and-Tuples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/03.05-Dictionaries-and-Tuples.md -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/03.06-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/03.06-Summary.md -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/03.07-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/03.07-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/images/reverse_string_indexing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/images/reverse_string_indexing.png -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/images/reverse_string_indexing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/images/reverse_string_indexing.xml -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/images/string_indexing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/images/string_indexing.png -------------------------------------------------------------------------------- /website/docs/03-Data-Types-and-Variables/images/string_indexing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/03-Data-Types-and-Variables/images/string_indexing.xml -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.01-What-is-a-Jupyter-Notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.01-What-is-a-Jupyter-Notebook.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.02-Why-Jupyter-Notebooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.02-Why-Jupyter-Notebooks.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.03-Installing-Juypter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.03-Installing-Juypter.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.04-Opening-a-Jupyter-Notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.04-Opening-a-Jupyter-Notebook.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.05-The-Jupyter-Notebook-Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.05-The-Jupyter-Notebook-Interface.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.06-Magic-Cells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.06-Magic-Cells.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.07-Getting-Help-in-a-Jupyter-Notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.07-Getting-Help-in-a-Jupyter-Notebook.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.08-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.08-Summary.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/04.10-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/04.10-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/Anaconda_Prompt_Jupyter_Notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/Anaconda_Prompt_Jupyter_Notebook.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/Jupyter_Home_Browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/Jupyter_Home_Browser.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/anaconda_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/anaconda_start_menu.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/change_cell_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/change_cell_type.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/click_change_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/click_change_name.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/code_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/code_cell.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/downloading_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/downloading_complete.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/engineering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/engineering.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/file_download_as_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/file_download_as_notebook.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/file_make_a_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/file_make_a_copy.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/insert_cell_above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/insert_cell_above.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/jupyter_notebook_anaconda_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/jupyter_notebook_anaconda_prompt.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/jupyter_notebook_dot_py_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/jupyter_notebook_dot_py_file.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/jupyter_notebook_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/jupyter_notebook_example.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/jupyter_notebook_export_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/jupyter_notebook_export_options.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/kernel_restart_and_clear_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/kernel_restart_and_clear_output.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/markdown_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/markdown_cell.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/new_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/new_notebook.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/new_notebook_from_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/new_notebook_from_browser.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/notebook_file_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/notebook_file_browser.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/notebook_file_browser_click_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/notebook_file_browser_click_folder.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/notebook_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/notebook_json.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/output_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/output_cell.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/rename_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/rename_dialog.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/rename_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/rename_notebook.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/rename_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/rename_window.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/run_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/run_cell.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/run_import_this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/run_import_this.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/save_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/save_notebook.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/windows_start_anaconda_navigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/windows_start_anaconda_navigator.png -------------------------------------------------------------------------------- /website/docs/04-Jupyter-Notebooks/images/windows_start_jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/04-Jupyter-Notebooks/images/windows_start_jupyter_notebook.png -------------------------------------------------------------------------------- /website/docs/05-Functions-and-Modules/05.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/05-Functions-and-Modules/05.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/05-Functions-and-Modules/05.01-Why-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/05-Functions-and-Modules/05.01-Why-functions.md -------------------------------------------------------------------------------- /website/docs/05-Functions-and-Modules/05.02-First-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/05-Functions-and-Modules/05.02-First-function.md -------------------------------------------------------------------------------- /website/docs/05-Functions-and-Modules/05.03-Functions-with-multiple-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/05-Functions-and-Modules/05.03-Functions-with-multiple-arguments.md -------------------------------------------------------------------------------- /website/docs/05-Functions-and-Modules/05.04-Functions-with-default-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/05-Functions-and-Modules/05.04-Functions-with-default-arguments.md -------------------------------------------------------------------------------- /website/docs/05-Functions-and-Modules/05.06-Docstrings-in-Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/05-Functions-and-Modules/05.06-Docstrings-in-Functions.md -------------------------------------------------------------------------------- /website/docs/05-Functions-and-Modules/05.07-Positional-and-Keyword-Arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/05-Functions-and-Modules/05.07-Positional-and-Keyword-Arguments.md -------------------------------------------------------------------------------- /website/docs/05-Functions-and-Modules/05.08-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/05-Functions-and-Modules/05.08-Summary.md -------------------------------------------------------------------------------- /website/docs/05-Functions-and-Modules/05.09-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/05-Functions-and-Modules/05.09-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.01-What-is-Matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.01-What-is-Matplotlib.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.02-Installing Matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.02-Installing Matplotlib.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.03-Line-Plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.03-Line-Plots.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.04-Saving-Plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.04-Saving-Plots.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.05-Multi-Line-Plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.05-Multi-Line-Plots.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.06-Bar-Charts-and-Pie-Charts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.06-Bar-Charts-and-Pie-Charts.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.07-Error-Bars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.07-Error-Bars.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.08-Histograms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.08-Histograms.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.09-Box-Plots-and-Violin-Plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.09-Box-Plots-and-Violin-Plots.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.10-Scatter-Plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.10-Scatter-Plots.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.11-Plot-Annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.11-Plot-Annotations.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.12-Subplots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.12-Subplots.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.13-Plot-Styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.13-Plot-Styles.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.14-Contour-Plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.14-Contour-Plots.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.15-Quiver-and-Stream-Plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.15-Quiver-and-Stream-Plots.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.16-3D-Surface-Plots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.16-3D-Surface-Plots.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.17-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.17-Summary.md -------------------------------------------------------------------------------- /website/docs/06-Plotting-with-Matplotlib/06.18-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/06-Plotting-with-Matplotlib/06.18-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/07.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/07.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/07.01-User-Input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/07.01-User-Input.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/07.02-If-Statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/07.02-If-Statements.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/07.02-Selection-Statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/07.02-Selection-Statements.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/07.04-If-Else-Statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/07.04-If-Else-Statements.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/07.05-Try-Except-Statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/07.05-Try-Except-Statements.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/07.06-Flowcharts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/07.06-Flowcharts.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/07.07-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/07.07-Summary.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/07.08-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/07.08-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/images/flow_chart_calculation_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/images/flow_chart_calculation_program.png -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/images/flow_chart_calculation_program.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/images/flow_chart_calculation_program.xml -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/images/flow_chart_simple_print_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/images/flow_chart_simple_print_program.png -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/images/flow_chart_simple_print_program.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/images/flow_chart_simple_print_program.xml -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/images/flow_chart_user_input_program.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/images/flow_chart_user_input_program.xml -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/images/four_flow_chart_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/images/four_flow_chart_shapes.png -------------------------------------------------------------------------------- /website/docs/07-If-Else-Try-Except/images/four_flow_chart_shapes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/07-If-Else-Try-Except/images/four_flow_chart_shapes.xml -------------------------------------------------------------------------------- /website/docs/08-Loops/08.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/08.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/08-Loops/08.01-For-Loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/08.01-For-Loops.md -------------------------------------------------------------------------------- /website/docs/08-Loops/08.02-While-Loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/08.02-While-Loops.md -------------------------------------------------------------------------------- /website/docs/08-Loops/08.03-Break-and-Continue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/08.03-Break-and-Continue.md -------------------------------------------------------------------------------- /website/docs/08-Loops/08.04-Flowcharts-Describing-Loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/08.04-Flowcharts-Describing-Loops.md -------------------------------------------------------------------------------- /website/docs/08-Loops/08.05-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/08.05-Summary.md -------------------------------------------------------------------------------- /website/docs/08-Loops/08.06-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/08.06-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/08-Loops/images/flow_chart_of_program_that_contains_a_for_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/images/flow_chart_of_program_that_contains_a_for_loop.png -------------------------------------------------------------------------------- /website/docs/08-Loops/images/flow_chart_of_program_that_contains_a_for_loop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/images/flow_chart_of_program_that_contains_a_for_loop.xml -------------------------------------------------------------------------------- /website/docs/08-Loops/images/four_flow_chart_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/images/four_flow_chart_shapes.png -------------------------------------------------------------------------------- /website/docs/08-Loops/images/four_flow_chart_shapes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/08-Loops/images/four_flow_chart_shapes.xml -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.01-Installing-NumPy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.01-Installing-NumPy.md -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.02-NumPy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.02-NumPy.md -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.03-Array-Creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.03-Array-Creation.md -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.04-Array-Indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.04-Array-Indexing.md -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.05-Array-Slicing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.05-Array-Slicing.md -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.06-Array-Opperations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.06-Array-Opperations.md -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.07-Systems-of-Linear-Equations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.07-Systems-of-Linear-Equations.md -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.08-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.08-Summary.md -------------------------------------------------------------------------------- /website/docs/09-Matricies-and-Arrays/09.10-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/09-Matricies-and-Arrays/09.10-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/10.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/10.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/10.01-SymPy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/10.01-SymPy.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/10.02-Defining-Varaibles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/10.02-Defining-Varaibles.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/10.03-Expressions-and-Substitutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/10.03-Expressions-and-Substitutions.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/10.04-Equations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/10.04-Equations.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/10.05-Solving-Equations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/10.05-Solving-Equations.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/10.06-Solving-Two-Equations-for-Two-Unknowns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/10.06-Solving-Two-Equations-for-Two-Unknowns.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/10.07-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/10.07-Summary.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/10.08-Review-Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/10.08-Review-Questions.md -------------------------------------------------------------------------------- /website/docs/10-Symbolic-Math/images/statics_problem_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/10-Symbolic-Math/images/statics_problem_diagram.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/11.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/11.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/11.01-PySerial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/11.01-PySerial.md -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/11.02-Bytes-and-Unicode-Strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/11.02-Bytes-and-Unicode-Strings.md -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/11.03-Controlling-an-LED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/11.03-Controlling-an-LED.md -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/11.05-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/11.05-Summary.md -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/11.06-Project-Ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/11.06-Project-Ideas.md -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/Arduino_LED_fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/Arduino_LED_fritzing.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/Arrow_to_Upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/Arrow_to_Upload.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/Check_to_Verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/Check_to_Verify.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/SerialMonitor_H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/SerialMonitor_H.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/Tools_SerialMonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/Tools_SerialMonitor.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/Tools_SerialPlotter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/Tools_SerialPlotter.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/arduino_LED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/arduino_LED.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/arduino_LED.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/arduino_LED.svg -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/arduino_download_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/arduino_download_page.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/arduino_led.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/arduino_led.fzz -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/arduino_potentiometer.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/arduino_potentiometer.fzz -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/arduino_potentiometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/arduino_potentiometer.svg -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/download_Arduino_IDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/download_Arduino_IDE.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/redboard_LED.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/redboard_LED.fzz -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/redboard_LED_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/redboard_LED_bb.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/serial_monitor_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/serial_monitor_L.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/serial_monitor_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/serial_monitor_output.png -------------------------------------------------------------------------------- /website/docs/11-Python-and-External-Hardware/images/serial_plotter_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/11-Python-and-External-Hardware/images/serial_plotter_output.png -------------------------------------------------------------------------------- /website/docs/12-MicroPython/12.00-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/12.00-Introduction.md -------------------------------------------------------------------------------- /website/docs/12-MicroPython/12.01-What-is-MicroPython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/12.01-What-is-MicroPython.md -------------------------------------------------------------------------------- /website/docs/12-MicroPython/12.02-Installing-MicroPython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/12.02-Installing-MicroPython.md -------------------------------------------------------------------------------- /website/docs/12-MicroPython/12.03-MicroPython-REPL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/12.03-MicroPython-REPL.md -------------------------------------------------------------------------------- /website/docs/12-MicroPython/12.04-Blinking-a-LED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/12.04-Blinking-a-LED.md -------------------------------------------------------------------------------- /website/docs/12-MicroPython/12.05-Reading-a-Sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/12.05-Reading-a-Sensor.md -------------------------------------------------------------------------------- /website/docs/12-MicroPython/12.06-Uploading-Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/12.06-Uploading-Code.md -------------------------------------------------------------------------------- /website/docs/12-MicroPython/12.07-Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/12.07-Summary.md -------------------------------------------------------------------------------- /website/docs/12-MicroPython/12.08-Project-Ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/12.08-Project-Ideas.md -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/Anaconda_Prompt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/Anaconda_Prompt.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/Anaconda_choose_python_version.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/Anaconda_choose_python_version.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/Anaconda_downloads_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/Anaconda_downloads_page.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/MicroPython_in_jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/MicroPython_in_jupyter_notebook.png -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/REPL_prompt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/REPL_prompt.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/active_new_conda_env.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/active_new_conda_env.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/bin_file_to_new_directory.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/bin_file_to_new_directory.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/bin_in_dir.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/bin_in_dir.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/conda_activate.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/conda_activate.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/conda_create_new_virtualenv.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/conda_create_new_virtualenv.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/conda_install_mpy-repl-tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/conda_install_mpy-repl-tool.jpg -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/conda_list.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/conda_list.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/conda_there-jupyter-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/conda_there-jupyter-setup.png -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/device_manager_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/device_manager_menu.png -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/download_putty.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/download_putty.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/download_silabs_driver.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/download_silabs_driver.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/downloads_folder.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/downloads_folder.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/esptool_erase_flash.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/esptool_erase_flash.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/esptool_help.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/esptool_help.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/esptool_write_flash.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/esptool_write_flash.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/feather_huzzah_temp_sensor_fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/feather_huzzah_temp_sensor_fritzing.png -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/find_device_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/find_device_manager.png -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/firmware_download_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/firmware_download_page.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/import_port_diag.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/import_port_diag.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/micropython_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/micropython_modules.png -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/mkdir_micropython.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/mkdir_micropython.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/pip_install_esptool.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/pip_install_esptool.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/putty_config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/putty_config.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/putty_in_start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/putty_in_start_menu.png -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/sys_dot_implementation_and_platform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/sys_dot_implementation_and_platform.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/sys_dot_platform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/sys_dot_platform.PNG -------------------------------------------------------------------------------- /website/docs/12-MicroPython/images/there.jupyter-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/12-MicroPython/images/there.jupyter-setup.png -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.00-Appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.00-Appendix.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.01-Reserved-and-Key-Words-in-Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.01-Reserved-and-Key-Words-in-Python.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.02-ASCII-Character-Codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.02-ASCII-Character-Codes.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.03-Virtual-Environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.03-Virtual-Environments.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.04-NumPy-Math-Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.04-NumPy-Math-Functions.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.05-Git-and-GitHub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.05-Git-and-GitHub.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.06-LaTeX-Math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.06-LaTeX-Math.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.07-Problem-Solving-with-Python-Book-Construction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.07-Problem-Solving-with-Python-Book-Construction.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.08-Contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.08-Contributions.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.09-Cover-Artwork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.09-Cover-Artwork.md -------------------------------------------------------------------------------- /website/docs/99-Appendix/99.10-About-the-Author.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/99-Appendix/99.10-About-the-Author.md -------------------------------------------------------------------------------- /website/docs/figures/anaconda_download_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/figures/anaconda_download_page.png -------------------------------------------------------------------------------- /website/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/docs/index.md -------------------------------------------------------------------------------- /website/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/mkdocs.yml -------------------------------------------------------------------------------- /website/mkdocs_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorKazarinoff/Problem-Solving-with-Python/HEAD/website/mkdocs_config.yml --------------------------------------------------------------------------------