diff --git a/lessons/lesson_08.ipynb b/lessons/lesson_08.ipynb index e4bdccc..5301d5e 100644 --- a/lessons/lesson_08.ipynb +++ b/lessons/lesson_08.ipynb @@ -891,6 +891,32 @@ ")" ] }, + { + "cell_type": "markdown", + "id": "9d569cc4", + "metadata": {}, + "source": [ + "# Summary for Python\n", + "\n", + "- we introduced programming concepts such as variables, data structures, loops, conditionals, functions, and modules/packages.\n", + "- specifically, the following topics were covered:\n", + " - simple data types: bool, integers, strings, floats\n", + " - complex data types: lists, dicts, tuples, sets\n", + " - logical operators\n", + " - loops: for loop, while loop\n", + " - conditions: if, elif, else\n", + " - comprehensions\n", + " - functions: defining and calling functions\n", + " - libraries: import and use of libraries/packages\n", + " - reading / writing files: open(), read(), write()\n", + " - data arrays: numpy arrays\n", + " - data frames: Pandas DataFrames\n", + " - data manipulation: filtering, grouping, merging\n", + " - tidy data\n", + " - BioPython\n", + " - plotting: creating plots with matplotlib and ggplot" + ] + }, { "cell_type": "markdown", "id": "ecee966f",