Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions lessons/lesson_08.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down