├── .gitignore ├── 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 ├── NEO_historical.csv ├── accounts1.sqlite ├── accounts2.sqlite ├── backups │ └── test.txt ├── bohemian_rhapsody_lyrics.txt ├── cities.csv ├── death_valley_2014.csv ├── definitions ├── example.txt ├── filename.txt ├── img │ ├── bokeh-example.png │ ├── folium-example.png │ ├── matplotlib-csv-example.png │ ├── matplotlib-example.png │ ├── matplotlib-examples.png │ ├── pygal-example-1.png │ ├── pygal-example-2.png │ ├── pygal-intro.png │ ├── pygal-json-example.png │ ├── tkinter-example.png │ └── tkinter-module.png ├── map1.html ├── menu.json ├── music.pickle ├── music │ ├── Beatles │ │ └── Sgt. Pepper's Lonely Hearts Club Band │ │ │ ├── 1 - Sgt. Pepper's Lonely Hearts Club Band.emp3 │ │ │ ├── 10 - Lovely Rita.emp3 │ │ │ ├── 11 - Good Morning Good Morning.emp3 │ │ │ ├── 12 - Sgt. Pepper's Lonely Hearts Club Band (reprise).emp3 │ │ │ ├── 13 - A Day In The Life.emp3 │ │ │ ├── 2 - With A Little Help From My Friends.emp3 │ │ │ ├── 3 - Lucy In The Sky With Diamonds.emp3 │ │ │ ├── 4 - Getting Better.emp3 │ │ │ ├── 5 - Fixing A Hole.emp3 │ │ │ ├── 6 - She's Leaving Home.emp3 │ │ │ ├── 7 - Being For The Benefit Of Mr. Kite.emp3 │ │ │ ├── 8 - Within You Without You.emp3 │ │ │ └── 9 - When I'm Sixty-Four.emp3 │ ├── Bernie Torme │ │ └── Demolition Ball │ │ │ ├── 1 - Fallen Angel.emp3 │ │ │ ├── 10 - Draw The Line.emp3 │ │ │ ├── 11 - U.S. Maid.emp3 │ │ │ ├── 12 - Let It Go.emp3 │ │ │ ├── 13 - Walk It.emp3 │ │ │ ├── 14 - Man O'Means.emp3 │ │ │ ├── 15 - Monkey Business.emp3 │ │ │ ├── 16 - My Darlene.emp3 │ │ │ ├── 2 - Black Sheep.emp3 │ │ │ ├── 3 - Action.emp3 │ │ │ ├── 4 - Ball & Chain.emp3 │ │ │ ├── 5 - Slip Away.emp3 │ │ │ ├── 6 - Long Time Coming.emp3 │ │ │ ├── 7 - Spinnin' Your Wheels.emp3 │ │ │ ├── 8 - Don't Understand.emp3 │ │ │ └── 9 - Industry.emp3 │ └── Beth Orton │ │ └── Trailer Park │ │ ├── 1 - She Cries Your Name.emp3 │ │ ├── 10 - I Wish I Never Saw The Sunshine.emp3 │ │ ├── 11 - Galaxy Of Emptiness.emp3 │ │ ├── 2 - Tangent.emp3 │ │ ├── 3 - Don't Need A Reason.emp3 │ │ ├── 4 - Live As You Dream.emp3 │ │ ├── 5 - Sugar Boy.emp3 │ │ ├── 6 - Touch Me With Your Love.emp3 │ │ ├── 7 - Whenever.emp3 │ │ ├── 8 - How Far.emp3 │ │ └── 9 - Someone's Daughter.emp3 ├── my_files │ └── test.txt ├── neo_btc.csv ├── neo_usd.csv ├── numbers.json ├── pizzas ├── plants_shelf ├── population_data.json ├── practice.cfg ├── practice.xml ├── practice.yaml ├── practice1.txt ├── practice2.txt ├── singers.csv ├── supermarkets-commas.txt ├── supermarkets-semicolons.txt ├── supermarkets.csv ├── supermarkets.json ├── supermarkets.xlsx ├── test.log ├── test.txt ├── verlegenhuken.xlsx ├── volcanoes.csv └── world.json ├── data_types.py ├── data_visualization.md ├── dataclasses_module.py ├── date_time_examples.py ├── date_time_modules.py ├── debugging.py ├── decorators.py ├── demos ├── americas.svg ├── die_visual_1.svg ├── die_visual_2.svg ├── die_visual_3.svg ├── line_plot1.html ├── line_plot2.html ├── redis_dryer.py ├── redis_pub.py ├── redis_sub.py ├── redis_washer.py ├── sample_plot.png ├── scatter_plot1.html ├── scatter_plot2.html ├── tasks.py ├── tasks_with_info.py ├── tcp_client.py ├── tcp_server.py ├── udp_client.py └── udp_server.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_blueprints_and_app_factory.md ├── flask_bootstrap.md ├── flask_jinja_notes.md ├── flask_mqtt.md ├── flask_multiple_databases.md ├── flask_socketio.md ├── flask_user_roles.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 ├── match_statements.py ├── matplotlib_csv_example.py ├── matplotlib_example.py ├── matplotlib_intro.py ├── namespaces.py ├── networks.md ├── noSQL_datastores.py ├── numpy_modules.py ├── operators.py ├── package_management.md ├── packages_example.md ├── pandas_data_analysis.py ├── pickling.py ├── polymorphism.py ├── postgreSQL_example.py ├── postman.md ├── pyenv.md ├── pygal_github_api_example.py ├── pygal_hn_api_example.py ├── pygal_intro.py ├── pygal_json_example.py ├── queues.py ├── recursion.py ├── reflection.py ├── regular_expressions.py ├── relational_databases.py ├── resources.py ├── rest_APIs.md ├── 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_scraping.py ├── web_servers_frameworks.py ├── while_loops.py └── zip_function.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/README.md -------------------------------------------------------------------------------- /ajax_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/ajax_notes.md -------------------------------------------------------------------------------- /binary_and_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/binary_and_unicode.py -------------------------------------------------------------------------------- /bokeh_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/bokeh_example.py -------------------------------------------------------------------------------- /booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/booleans.py -------------------------------------------------------------------------------- /builtin_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/builtin_functions.py -------------------------------------------------------------------------------- /classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/classes.py -------------------------------------------------------------------------------- /composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/composition.py -------------------------------------------------------------------------------- /comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/comprehensions.py -------------------------------------------------------------------------------- /concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/concurrency.py -------------------------------------------------------------------------------- /conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/conditionals.py -------------------------------------------------------------------------------- /context_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/context_managers.py -------------------------------------------------------------------------------- /data/NEO_historical.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/NEO_historical.csv -------------------------------------------------------------------------------- /data/accounts1.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/accounts1.sqlite -------------------------------------------------------------------------------- /data/accounts2.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/accounts2.sqlite -------------------------------------------------------------------------------- /data/backups/test.txt: -------------------------------------------------------------------------------- 1 | File created. 2 | -------------------------------------------------------------------------------- /data/bohemian_rhapsody_lyrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/bohemian_rhapsody_lyrics.txt -------------------------------------------------------------------------------- /data/cities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/cities.csv -------------------------------------------------------------------------------- /data/death_valley_2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/death_valley_2014.csv -------------------------------------------------------------------------------- /data/definitions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/definitions -------------------------------------------------------------------------------- /data/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/example.txt -------------------------------------------------------------------------------- /data/filename.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/img/bokeh-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/bokeh-example.png -------------------------------------------------------------------------------- /data/img/folium-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/folium-example.png -------------------------------------------------------------------------------- /data/img/matplotlib-csv-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/matplotlib-csv-example.png -------------------------------------------------------------------------------- /data/img/matplotlib-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/matplotlib-example.png -------------------------------------------------------------------------------- /data/img/matplotlib-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/matplotlib-examples.png -------------------------------------------------------------------------------- /data/img/pygal-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/pygal-example-1.png -------------------------------------------------------------------------------- /data/img/pygal-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/pygal-example-2.png -------------------------------------------------------------------------------- /data/img/pygal-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/pygal-intro.png -------------------------------------------------------------------------------- /data/img/pygal-json-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/pygal-json-example.png -------------------------------------------------------------------------------- /data/img/tkinter-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/tkinter-example.png -------------------------------------------------------------------------------- /data/img/tkinter-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/img/tkinter-module.png -------------------------------------------------------------------------------- /data/map1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/map1.html -------------------------------------------------------------------------------- /data/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/menu.json -------------------------------------------------------------------------------- /data/music.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music.pickle -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/1 - Sgt. Pepper's Lonely Hearts Club Band.emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/1 - Sgt. Pepper's Lonely Hearts Club Band.emp3 -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/10 - Lovely Rita.emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/10 - Lovely Rita.emp3 -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/11 - Good Morning Good Morning.emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/11 - Good Morning Good Morning.emp3 -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/12 - Sgt. Pepper's Lonely Hearts Club Band (reprise).emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/12 - Sgt. Pepper's Lonely Hearts Club Band (reprise).emp3 -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/13 - A Day In The Life.emp3: -------------------------------------------------------------------------------- 1 | Beatles/Sgt. Pepper's Lonely Hearts Club Band/13 - A Day In The Life. -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/2 - With A Little Help From My Friends.emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/2 - With A Little Help From My Friends.emp3 -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/3 - Lucy In The Sky With Diamonds.emp3: -------------------------------------------------------------------------------- 1 | Beatles/Sgt. Pepper's Lonely Hearts Club Band/3 - Lucy In The Sky With Diamonds. -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/4 - Getting Better.emp3: -------------------------------------------------------------------------------- 1 | Beatles/Sgt. Pepper's Lonely Hearts Club Band/4 - Getting Better. -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/5 - Fixing A Hole.emp3: -------------------------------------------------------------------------------- 1 | Beatles/Sgt. Pepper's Lonely Hearts Club Band/5 - Fixing A Hole. -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/6 - She's Leaving Home.emp3: -------------------------------------------------------------------------------- 1 | Beatles/Sgt. Pepper's Lonely Hearts Club Band/6 - She's Leaving Home. -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/7 - Being For The Benefit Of Mr. Kite.emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/7 - Being For The Benefit Of Mr. Kite.emp3 -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/8 - Within You Without You.emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/8 - Within You Without You.emp3 -------------------------------------------------------------------------------- /data/music/Beatles/Sgt. Pepper's Lonely Hearts Club Band/9 - When I'm Sixty-Four.emp3: -------------------------------------------------------------------------------- 1 | Beatles/Sgt. Pepper's Lonely Hearts Club Band/9 - When I'm Sixty-Four. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/1 - Fallen Angel.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/1 - Fallen Angel. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/10 - Draw The Line.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/10 - Draw The Line. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/11 - U.S. Maid.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/11 - U.S. Maid. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/12 - Let It Go.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/12 - Let It Go. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/13 - Walk It.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/13 - Walk It. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/14 - Man O'Means.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/14 - Man O'Means. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/15 - Monkey Business.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/15 - Monkey Business. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/16 - My Darlene.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/16 - My Darlene. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/2 - Black Sheep.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/2 - Black Sheep. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/3 - Action.emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Bernie Torme/Demolition Ball/3 - Action.emp3 -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/4 - Ball & Chain.emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Bernie Torme/Demolition Ball/4 - Ball & Chain.emp3 -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/5 - Slip Away.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/5 - Slip Away. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/6 - Long Time Coming.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/6 - Long Time Coming. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/7 - Spinnin' Your Wheels.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/7 - Spinnin' Your Wheels. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/8 - Don't Understand.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/8 - Don't Understand. -------------------------------------------------------------------------------- /data/music/Bernie Torme/Demolition Ball/9 - Industry.emp3: -------------------------------------------------------------------------------- 1 | Bernie Torme/Demolition Ball/9 - Industry. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/1 - She Cries Your Name.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/1 - She Cries Your Name. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/10 - I Wish I Never Saw The Sunshine.emp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/music/Beth Orton/Trailer Park/10 - I Wish I Never Saw The Sunshine.emp3 -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/11 - Galaxy Of Emptiness.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/11 - Galaxy Of Emptiness. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/2 - Tangent.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/2 - Tangent. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/3 - Don't Need A Reason.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/3 - Don't Need A Reason. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/4 - Live As You Dream.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/4 - Live As You Dream. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/5 - Sugar Boy.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/5 - Sugar Boy. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/6 - Touch Me With Your Love.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/6 - Touch Me With Your Love. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/7 - Whenever.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/7 - Whenever. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/8 - How Far.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/8 - How Far. -------------------------------------------------------------------------------- /data/music/Beth Orton/Trailer Park/9 - Someone's Daughter.emp3: -------------------------------------------------------------------------------- 1 | Beth Orton/Trailer Park/9 - Someone's Daughter. -------------------------------------------------------------------------------- /data/my_files/test.txt: -------------------------------------------------------------------------------- 1 | File created. 2 | -------------------------------------------------------------------------------- /data/neo_btc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/neo_btc.csv -------------------------------------------------------------------------------- /data/neo_usd.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/neo_usd.csv -------------------------------------------------------------------------------- /data/numbers.json: -------------------------------------------------------------------------------- 1 | [[4, 5, 7, 9, 11, 13], "j"] -------------------------------------------------------------------------------- /data/pizzas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/pizzas -------------------------------------------------------------------------------- /data/plants_shelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/plants_shelf -------------------------------------------------------------------------------- /data/population_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/population_data.json -------------------------------------------------------------------------------- /data/practice.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/practice.cfg -------------------------------------------------------------------------------- /data/practice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/practice.xml -------------------------------------------------------------------------------- /data/practice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/practice.yaml -------------------------------------------------------------------------------- /data/practice1.txt: -------------------------------------------------------------------------------- 1 | File created. 2 | -------------------------------------------------------------------------------- /data/practice2.txt: -------------------------------------------------------------------------------- 1 | File created. 2 | -------------------------------------------------------------------------------- /data/singers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/singers.csv -------------------------------------------------------------------------------- /data/supermarkets-commas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/supermarkets-commas.txt -------------------------------------------------------------------------------- /data/supermarkets-semicolons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/supermarkets-semicolons.txt -------------------------------------------------------------------------------- /data/supermarkets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/supermarkets.csv -------------------------------------------------------------------------------- /data/supermarkets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/supermarkets.json -------------------------------------------------------------------------------- /data/supermarkets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/supermarkets.xlsx -------------------------------------------------------------------------------- /data/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/test.log -------------------------------------------------------------------------------- /data/test.txt: -------------------------------------------------------------------------------- 1 | Hola! -------------------------------------------------------------------------------- /data/verlegenhuken.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/verlegenhuken.xlsx -------------------------------------------------------------------------------- /data/volcanoes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/volcanoes.csv -------------------------------------------------------------------------------- /data/world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data/world.json -------------------------------------------------------------------------------- /data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data_types.py -------------------------------------------------------------------------------- /data_visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/data_visualization.md -------------------------------------------------------------------------------- /dataclasses_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/dataclasses_module.py -------------------------------------------------------------------------------- /date_time_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/date_time_examples.py -------------------------------------------------------------------------------- /date_time_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/date_time_modules.py -------------------------------------------------------------------------------- /debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/debugging.py -------------------------------------------------------------------------------- /decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/decorators.py -------------------------------------------------------------------------------- /demos/americas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/americas.svg -------------------------------------------------------------------------------- /demos/die_visual_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/die_visual_1.svg -------------------------------------------------------------------------------- /demos/die_visual_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/die_visual_2.svg -------------------------------------------------------------------------------- /demos/die_visual_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/die_visual_3.svg -------------------------------------------------------------------------------- /demos/line_plot1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/line_plot1.html -------------------------------------------------------------------------------- /demos/line_plot2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/line_plot2.html -------------------------------------------------------------------------------- /demos/redis_dryer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/redis_dryer.py -------------------------------------------------------------------------------- /demos/redis_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/redis_pub.py -------------------------------------------------------------------------------- /demos/redis_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/redis_sub.py -------------------------------------------------------------------------------- /demos/redis_washer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/redis_washer.py -------------------------------------------------------------------------------- /demos/sample_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/sample_plot.png -------------------------------------------------------------------------------- /demos/scatter_plot1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/scatter_plot1.html -------------------------------------------------------------------------------- /demos/scatter_plot2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/scatter_plot2.html -------------------------------------------------------------------------------- /demos/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/tasks.py -------------------------------------------------------------------------------- /demos/tasks_with_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/tasks_with_info.py -------------------------------------------------------------------------------- /demos/tcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/tcp_client.py -------------------------------------------------------------------------------- /demos/tcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/tcp_server.py -------------------------------------------------------------------------------- /demos/udp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/udp_client.py -------------------------------------------------------------------------------- /demos/udp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/demos/udp_server.py -------------------------------------------------------------------------------- /deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/deployment.md -------------------------------------------------------------------------------- /deployment_digitalocean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/deployment_digitalocean.md -------------------------------------------------------------------------------- /deployment_docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/deployment_docker.md -------------------------------------------------------------------------------- /deployment_heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/deployment_heroku.md -------------------------------------------------------------------------------- /design_patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/design_patterns.md -------------------------------------------------------------------------------- /dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/dictionaries.py -------------------------------------------------------------------------------- /documenting_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/documenting_naming.py -------------------------------------------------------------------------------- /escape_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/escape_characters.py -------------------------------------------------------------------------------- /exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/exceptions.py -------------------------------------------------------------------------------- /files_read_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/files_read_write.py -------------------------------------------------------------------------------- /flask_blueprints_and_app_factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/flask_blueprints_and_app_factory.md -------------------------------------------------------------------------------- /flask_bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/flask_bootstrap.md -------------------------------------------------------------------------------- /flask_jinja_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/flask_jinja_notes.md -------------------------------------------------------------------------------- /flask_mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/flask_mqtt.md -------------------------------------------------------------------------------- /flask_multiple_databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/flask_multiple_databases.md -------------------------------------------------------------------------------- /flask_socketio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/flask_socketio.md -------------------------------------------------------------------------------- /flask_user_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/flask_user_roles.md -------------------------------------------------------------------------------- /folium_webmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/folium_webmaps.py -------------------------------------------------------------------------------- /formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/formatting.py -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/functions.py -------------------------------------------------------------------------------- /generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/generators.py -------------------------------------------------------------------------------- /geopy_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/geopy_module.py -------------------------------------------------------------------------------- /helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/helper_functions.py -------------------------------------------------------------------------------- /import_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/import_modules.py -------------------------------------------------------------------------------- /inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/inheritance.py -------------------------------------------------------------------------------- /iterables_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/iterables_summary.py -------------------------------------------------------------------------------- /iterating_with_for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/iterating_with_for.py -------------------------------------------------------------------------------- /json_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/json_example.py -------------------------------------------------------------------------------- /jupyter_notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/jupyter_notebook.md -------------------------------------------------------------------------------- /keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/keywords.py -------------------------------------------------------------------------------- /lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/lists.py -------------------------------------------------------------------------------- /logging_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/logging_errors.py -------------------------------------------------------------------------------- /magic_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/magic_methods.py -------------------------------------------------------------------------------- /match_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/match_statements.py -------------------------------------------------------------------------------- /matplotlib_csv_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/matplotlib_csv_example.py -------------------------------------------------------------------------------- /matplotlib_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/matplotlib_example.py -------------------------------------------------------------------------------- /matplotlib_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/matplotlib_intro.py -------------------------------------------------------------------------------- /namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/namespaces.py -------------------------------------------------------------------------------- /networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/networks.md -------------------------------------------------------------------------------- /noSQL_datastores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/noSQL_datastores.py -------------------------------------------------------------------------------- /numpy_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/numpy_modules.py -------------------------------------------------------------------------------- /operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/operators.py -------------------------------------------------------------------------------- /package_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/package_management.md -------------------------------------------------------------------------------- /packages_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/packages_example.md -------------------------------------------------------------------------------- /pandas_data_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/pandas_data_analysis.py -------------------------------------------------------------------------------- /pickling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/pickling.py -------------------------------------------------------------------------------- /polymorphism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/polymorphism.py -------------------------------------------------------------------------------- /postgreSQL_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/postgreSQL_example.py -------------------------------------------------------------------------------- /postman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/postman.md -------------------------------------------------------------------------------- /pyenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/pyenv.md -------------------------------------------------------------------------------- /pygal_github_api_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/pygal_github_api_example.py -------------------------------------------------------------------------------- /pygal_hn_api_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/pygal_hn_api_example.py -------------------------------------------------------------------------------- /pygal_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/pygal_intro.py -------------------------------------------------------------------------------- /pygal_json_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/pygal_json_example.py -------------------------------------------------------------------------------- /queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/queues.py -------------------------------------------------------------------------------- /recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/recursion.py -------------------------------------------------------------------------------- /reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/reflection.py -------------------------------------------------------------------------------- /regular_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/regular_expressions.py -------------------------------------------------------------------------------- /relational_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/relational_databases.py -------------------------------------------------------------------------------- /resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/resources.py -------------------------------------------------------------------------------- /rest_APIs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/rest_APIs.md -------------------------------------------------------------------------------- /rounding_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/rounding_example.py -------------------------------------------------------------------------------- /sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/sets.py -------------------------------------------------------------------------------- /shelve_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/shelve_module.py -------------------------------------------------------------------------------- /sqlite3_example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/sqlite3_example1.py -------------------------------------------------------------------------------- /sqlite3_example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/sqlite3_example2.py -------------------------------------------------------------------------------- /standard_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/standard_library.py -------------------------------------------------------------------------------- /strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/strings.py -------------------------------------------------------------------------------- /structured_file_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/structured_file_formats.py -------------------------------------------------------------------------------- /system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/system.py -------------------------------------------------------------------------------- /template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/template.py -------------------------------------------------------------------------------- /terminology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/terminology.py -------------------------------------------------------------------------------- /testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/testing.py -------------------------------------------------------------------------------- /timezones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/timezones.py -------------------------------------------------------------------------------- /timezones_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/timezones_example.py -------------------------------------------------------------------------------- /tkinter_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/tkinter_example.py -------------------------------------------------------------------------------- /tkinter_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/tkinter_module.py -------------------------------------------------------------------------------- /tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/tuples.py -------------------------------------------------------------------------------- /virtual_environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/virtual_environments.md -------------------------------------------------------------------------------- /web_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/web_scraping.py -------------------------------------------------------------------------------- /web_servers_frameworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/web_servers_frameworks.py -------------------------------------------------------------------------------- /while_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/while_loops.py -------------------------------------------------------------------------------- /zip_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessicarush/python-notes/HEAD/zip_function.py --------------------------------------------------------------------------------