forked from learn-co-curriculum/SENG-LIVE-010923-Phase-3
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initialize 02_example_starter_python_data_structures
- Loading branch information
0 parents
commit 8461bc0
Showing
4 changed files
with
404 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "Python Data Structures" | ||
|
||
[packages] | ||
ipdb = "*" | ||
|
||
[dev-packages] | ||
ipdb = "*" | ||
|
||
[requires] | ||
python_version = "3.8" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Python Data Structures | ||
|
||
## Learning Goals | ||
|
||
- Demonstrate Sequence types (`list`, `tuple`, `range`) | ||
- Review the different uses for each Sequence type | ||
- Demonstrate standard methods for accessing, updating and deleting values in Lists | ||
- Review Tuples | ||
- Review Ranges | ||
- Demonstrate Mapping types with Dictionaries | ||
- Demonstrate standard methods for accessing, updating and deleting values in Dictionaries | ||
- Demonstrate Set types with set and frozen set | ||
- Demonstrate `for` and `while` loops | ||
- Demonstrate list compressions | ||
- Stretch Goals | ||
- Demonstrate Generator expressions | ||
- Demonstrate how to create a `switch` using a Dictionary |
Oops, something went wrong.