Skip to content

Commit cd2bd0d

Browse files
Fix typos
1 parent 372908c commit cd2bd0d

1 file changed

Lines changed: 11 additions & 13 deletions

File tree

README.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Python
2-
 
2+
33
## Content
44

55
* [Description](#description)
@@ -16,7 +16,7 @@
1616

1717
## Description
1818

19-
This module introduces participants to the fundamentals of programming using Python. Participants will be introduced to the concepts of functions and object-oriented programming to make use of reusable blocks of code and models, respectively. We also introduce `numPy`, an important library in data science and machine learning. By the end of this module, participants will be able to write reusable code to analyze data.
19+
This module introduces participants to the fundamentals of programming using Python. Participants will be introduced to the concepts of functions and object-oriented programming to make use of reusable blocks of code and models, respectively. We also introduce `NumPy`, an important library in data science and machine learning. By the end of this module, participants will be able to write reusable code to analyze data.
2020

2121
## Learning Outcomes
2222

@@ -28,7 +28,7 @@ By the end of the module, participants will be able to:
2828
4. Write blocks of code in Python using variables and conditionals
2929
5. Use a loop to go over elements of an array
3030
6. Describe the benefits of Object Oriented programming
31-
7. Use the `numPy` library to perform mathematical operations on arrays and datasets
31+
7. Use the `NumPy` library to perform mathematical operations on arrays and datasets
3232

3333
## Assignments
3434

@@ -52,22 +52,22 @@ There are two assignments (one per week) in this module:
5252

5353
## Delivery of the Learning Module
5454

55-
This module will include live learning sessions and optional, asynchronous work periods. During live learning sessions, the Technical Facilitator will introduce and explain key concepts and demonstrate core skills. Learning is facilitated during this time. Before and after each live learning session, the instructional team will be available for questions related to the core concepts of the module. The Technical Facilitator will introduce concepts through a collaborative live coding session using the Python notebooks found under `/01_materials/slides`. The Technical Facilitator will also upload live coding files to this repository for participants to revisit under `./04_this_cohort/live_code`.
55+
This module will include live learning sessions and optional, asynchronous work periods. During live learning sessions, the Technical Facilitator will introduce and explain key concepts and demonstrate core skills. Learning is facilitated during this time. Before and after each live learning session, the instructional team will be available for questions related to the core concepts of the module. The Technical Facilitator will introduce concepts through a collaborative live coding session using the Jupyter notebooks found under `/01_materials/slides`. The Technical Facilitator will also upload live coding files to this repository for participants to revisit under `./04_this_cohort/live_code`.
5656

5757

5858
Optional work periods are to be used to seek help from peers, the Learning Support team, and to work through the homework and assignments in the learning module, with access to live help. Content is not facilitated, but rather this time should be driven by participants. We encourage participants to come to these work periods with questions and problems to work through.
5959

6060

61-
Participants are encouraged to engage actively during the learning module. They key to developing the core skills in each learning module is through practice. The more participants engage in coding along with the instructional team, and applying the skills in each module, the more likely it is that these skills will solidify.
61+
Participants are encouraged to engage actively during the learning module. The key to developing the core skills in each learning module is through practice. The more participants engage in coding along with the instructional team, and applying the skills in each module, the more likely it is that these skills will solidify.
6262

6363
## Schedule
6464

6565
||Tuesday|Wednesday|Thursday|Friday|Saturday|
6666
|---|---|---|---|---|---|
6767
|Week 1|Live Learning Session 1 (Introduction, Data Types, Error)|Live Learning Session 2 (Functions, Strings, Converting Types, Input)|Live Learning Session 3 (Control Flow)|Work Period 1|Work Period 2|
68-
|Week 2| Live Learning Session 4 (Reading/Writing, Object Oriented Programming)|Live Learning Session 5 (`numPy`)|Case Study|Work Period 3|Work Period 4|
68+
|Week 2| Live Learning Session 4 (Reading/Writing, Object Oriented Programming)|Live Learning Session 5 (`NumPy`)|Case Study|Work Period 3|Work Period 4|
6969

70-
While Testing, `pandas`, Visualization, and APIs are not covered in this course, you are encouraged to explore the slides at your own pace to deepen your understanding.
70+
While testing, `pandas`, Visualization, and APIs are not covered in this course, you are encouraged to explore the slides at your own pace to deepen your understanding.
7171

7272
## Requirements
7373

@@ -94,13 +94,13 @@ Feel free to use the following as resources:
9494

9595
- [Dictionaries](https://www.youtube.com/watch?v=u0yr9B3nH8c)
9696
- [Loops](https://www.youtube.com/watch?v=dHANJ4l6fwA)
97-
- [Function](https://www.youtube.com/watch?v=NSbOtYzIQI0)
97+
- [Functions](https://www.youtube.com/watch?v=NSbOtYzIQI0)
9898
- [Return vs print](https://www.youtube.com/watch?v=LWdsF79H1Pg)
9999
- [OOP Part 1](https://www.youtube.com/watch?v=wfcWRAxRVBA)
100100
- [OOP Part 2](https://www.youtube.com/watch?v=WOwi0h_-dfA)
101101
- [NumPy Playlist](https://www.youtube.com/playlist?list=PLGZqdNxqKzfYVbCaAKTPHVjz-VjQtBzbl)
102102

103-
## Folder Structure
103+
## Folder structure
104104

105105
```markdown
106106
.
@@ -122,11 +122,9 @@ Feel free to use the following as resources:
122122
* **activities**: Contains graded assignments, exercises, and homework to practice concepts covered in the learning module.
123123
* **instructional_team**: Resources for the instructional team.
124124
* **this_cohort**: Additional materials and resources for this cohort, including live coding files.
125-
* **src/data**: Source code, databases, logs, and required dependencies (requirements.txt) needed during the module.
126-
* **.gitignore**: Files to exclude from this folder, specified by the Technical Facilitator
125+
* **src/data**: Source databases.
126+
* **.gitignore**: Files to exclude from this repository, specified by the Technical Facilitator.
127127
* **LICENSE**: The license for this repository.
128128
* **SETUP.md**: Contains the steps required to set up this repo for the module.
129129
* **pyproject.toml**: Tells Python which packages this repo needs to run.
130130
* **README.md**: This file.
131-
132-

0 commit comments

Comments
 (0)