X Tutup
Skip to content

Commit 08f982a

Browse files
committed
Updated section contents
1 parent 32ec113 commit 08f982a

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

Notes/01_Introduction/00_Overview.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ the ground up. Starting with nothing, you'll learn how to edit, run,
55
and debug small programs. Ultimately, you'll write a short script that
66
reads a CSV data file and performs a simple calculation.
77

8-
* [1. Introducing Python](01_Python)
9-
* [2. A First Program](02_Hello_world)
10-
* [3. Numbers](03_Numbers)
11-
* [4. Strings](04_Strings)
12-
* [5. Lists](05_Lists)
13-
* [6. Files](06_Files)
14-
* [7. Functions](07_Functions)
8+
* [1.1 Introducing Python](01_Python)
9+
* [1.2 A First Program](02_Hello_world)
10+
* [1.3 Numbers](03_Numbers)
11+
* [1.4 Strings](04_Strings)
12+
* [1.5 Lists](05_Lists)
13+
* [1.6 Files](06_Files)
14+
* [1.7 Functions](07_Functions)
1515

1616
[Contents](../Contents)
1717

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
1-
# Working With Data Overview
1+
# 2. Working With Data
22

3-
In this section, we look at how Python programmers represent and work with data.
3+
To write useful programs, you need to be able to work with data.
4+
This section introduces Python's core data structures of tuples,
5+
lists, sets, and dictionaries and discusses common data handling
6+
idioms. The last part of this section dives a little deeper
7+
into Python's underlying object model.
48

5-
Most programs today work with data. We are going to learn to common programming idioms and how to not shoot yourself in the foot.
9+
* [2.1 Datatypes and Data Structures](01_Datatypes)
10+
* [2.2 Containers](02_Containers)
11+
* [2.3 Formatted Output](03_Formatting)
12+
* [2.4 Sequences](04_Sequences)
13+
* [2.5 Collections module](05_Collections)
14+
* [2.6 List comprehensions](06_List_comprehension)
15+
* [2.7 Object model](07_Objects)
616

7-
We will take a look at part of the object-model in Python. Which is a big part of understanding most Python programs.
17+
[Contents](../Contents)

0 commit comments

Comments
 (0)
X Tutup