Python 3 example code and notes
Python
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
data
README.md
ajax_notes.md
binary_and_unicode.py
bokeh_example.py
booleans.py
builtin_functions.py
classes.py
composition.py
comprehensions.py
concurrency.py
conditionals.py
context_managers.py
data_types.py
date_time_examples.py
date_time_modules.py
debugging.py
decorators.py
deployment.md
deployment_digitalocean.md
deployment_docker.md
deployment_heroku.md
design_patterns.md
dictionaries.py
documenting_naming.py
escape_characters.py
exceptions.py
files_read_write.py
flask_bootstrap.py
flask_notes.md
folium_webmaps.py
formatting.py
functions.py
generators.py
geopy_module.py
helper_functions.py
import_modules.py
inheritance.py
iterables_summary.py
iterating_with_for.py
json_example.py
jupyter_notebook.md
keywords.py
lists.py
logging_errors.py
magic_methods.py
markdown_notes.md
matplotlib_csv_example.py
matplotlib_example.py
matplotlib_intro.py
namespaces.py
networks.py
noSQL_datastores.py
numpy_modules.py
operators.py
package_management.md
packages.py
pandas_data_analysis.py
pickling.py
polymorphism.py
postgreSQL_example.py
postman.md
pygal_api_example1.py
pygal_api_example2.py
pygal_intro.py
pygal_json_example.py
queues.py
recursion.py
reflection.py
regular_expressions.py
relational_databases.py
resources.py
rounding_example.py
sets.py
shelve_module.py
sqlite3_example1.py
sqlite3_example2.py
standard_library.py
strings.py
structured_file_formats.py
system.py
template.py
terminology.py
testing.py
timezones.py
timezones_example.py
tkinter_example.py
tkinter_module.py
tuples.py
virtual_environments.md
web_APIs.md
web_scraping.py
web_servers_frameworks.py
while_loops.py
zip_function.py

README.md

python notes

description

In my path to learning Python, I'll be collecting my notes and example code here for reference and review purposes. Filenames reflect the topic as much as possible. The data directory contains resources for some of the examples. To date, my training is self-guided through the use of text books and online resources.

credits

Some examples and comments may come from the following:

  • 'Python: Master the Art of Design Patterns' - Phillips, Girighar, Kasampalis
  • 'Python Playground' - Mahesh Venkitachalam
  • 'Python Crash Course' - Eric Matthes
  • 'Introducing Python' - Bill Lubanovic
  • 'The Python 3 Standard Library by Example' - Doug Hellmann
  • 'Effective Python' - Brett Slatkin
  • 'The Flask Mega-Tutorial' - Miguel Grinberg
  • 'Flask Web Development' - Miguel Grinberg
  • 'Complete Python Masterclass' - Udemy course
  • 'The Python Mega Course: Build 10 Real World Applications' - Udemy course
  • 'REST APIs with Flask and Python' - Udemy course
  • 'Think Python' - Allen B. Downey
  • 'Learn Python the Hard Way" - Zed A. Shaw
  • Python documentation - https://docs.python.org/3/index.html

Very special thanks to aleph2c for the unending explanations, knowledge and support.