Skip to content

Commit b9b79bd

Browse files
committed
mod5
1 parent 61ad6fb commit b9b79bd

24 files changed

+3330
-8
lines changed

_quarto.yml

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,28 @@ website:
3232
style: 'docked'
3333
background: 'primary'
3434
contents:
35-
- section: "**M0. Welcome to Programming in Python for Data Science**"
35+
- section: "**Module 5: Making Choices and Repeating Iterations**"
3636
contents:
37-
- text: '0. Welcome!'
38-
href: modules/index.qmd
39-
- href: modules/module0/module0-01-programming_in_python_for_data_science.qmd
40-
- text: '   1.1. Prerequisite confirmation'
41-
href: modules/module0/module0-02-are_you_ready.qmd
42-
- section: "**M1. Python & Pandas - An Unexpected Friendship**"
37+
- href: modules/module5/module5-00-module_learning_outcomes.qmd
38+
- href: modules/module5/module5-01-making_choices_with_conditional_statements.qmd
39+
- text: '   1.1. Exercises'
40+
href: modules/module5/module5-02-quick_questions_with_conditionals.qmd
41+
- href: modules/module5/module5-06-repeated_iterations_(loops).qmd
42+
- text: '   2.1. Exercises'
43+
href: modules/module5/module5-07-repeated_iterations_questions.qmd
44+
- href: modules/module5/module5-09-range_dictionaries_and_comprehensions.qmd
45+
- text: '   3.1. Exercises'
46+
href: modules/module5/module5-10-range_questions.qmd
47+
- href: modules/module5/module5-13-nested_loops.qmd
48+
- text: '   4.1. Exercises'
49+
href: modules/module5/module5-14-nested_loop_questions.qmd
50+
- href: modules/module5/module5-16-repeated_iterations_with_conditions.qmd
51+
- text: '   5.1. Exercises'
52+
href: modules/module5/module5-17-conditional_loop_questions.qmd
53+
- href: modules/module5/module5-19-functions.qmd
54+
- text: '   6.1. Exercises'
55+
href: modules/module5/module5-20-function_questions.qmd
56+
- href: modules/module5/module5-23-what_did_we_just_learn.qmd
4357

4458
# Since we are declaring options for two formats here (html and revealjs)
4559
# each qmd file needs to include a yaml block including which format to use for that file.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
format:
3+
html:
4+
page-layout: full
5+
---
6+
7+
# 0. Module Learning Outcomes
8+
9+
::: {.panel-tabset .nav-pills}
10+
11+
## Video
12+
13+
<iframe
14+
class="video"
15+
src="https://www.youtube.com/embed/w7cfM6ReOzU?start=0&end=50&rel=0"
16+
title="Module 5 Video - Module Learning Outcomes"
17+
frameborder="0"
18+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
19+
allowfullscreen
20+
></iframe>
21+
22+
## Slides
23+
24+
<iframe
25+
class="slide-deck"
26+
src="slides/module5_00.html"
27+
></iframe>
28+
29+
:::
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
format:
3+
html:
4+
page-layout: full
5+
---
6+
7+
# 1. Making Choices with Conditional Statements
8+
9+
::: {.panel-tabset .nav-pills}
10+
11+
## Video
12+
13+
<iframe
14+
class="video"
15+
src="https://www.youtube.com/embed/yz6Wwa2MkQA?start=6&end=619&rel=0"
16+
title="Module 5 Video - Making Choices with Conditional Statements"
17+
frameborder="0"
18+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
19+
allowfullscreen
20+
></iframe>
21+
22+
## Slides
23+
24+
<iframe
25+
class="slide-deck"
26+
src="slides/module5_01.html"
27+
></iframe>
28+
29+
:::

0 commit comments

Comments
 (0)