Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit c2bdf69

Browse files
authored
brief notes on intro pages
1 parent 2c588c3 commit c2bdf69

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

book/basics/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Basics
22

3-
This chapter is all about getting some of the basics under your belt!
3+
This chapter is all about getting some of the basics of Python under your belt! Even if you have never programmed before, the concepts in this chapter should be easy to understand.
44

55
% a short overview for this chapter
66

book/beyond/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Beyond the Basics
22

3-
This chapter extends some of the topics we have covered in previous chapters, for example: strings, functions, while adding a new topic about working with files.
3+
This chapter extends some of the topics we have covered in previous chapters (e.g., strings and functions), while adding a new topic about working with files.
44

55
% a short overview for this chapter
66

book/flow/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Flow
22

3-
This chapter is all about ...
3+
This chapter takes the building blocks from the previous one and intruces new concepts that of conditional statements and loops that allow you to put them together into short pieces of code; very useful for accomplishing repetetive tasks. Data structures are introduced as well, allowing you to collect and process information in a consistent way.
44

55
% a short overview for this chapter
66

book/modules/intro.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Modules
22

3-
This chapter ...
3+
This chapter introduces modules, which are critical for understanding how commonly-used third-party libraries like Numpy or Pandas relate to the Python programming language.
4+
5+
Future additions to this chapter may include pages that explain how to create and design modules of your own. If you are interested in seeing more, contact the authors or create an Issue in the GitHub repository!
46

57
% a short overview for this chapter
68

book/objects/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Objects and References
22

3-
This chapter ...
3+
By now you should be comfortable assigning variables and have used the `=` operator many times. Unfortunately, we need to give you some bad news: that innocent `=` sign is not so simple as you may be used to in a mathematics course! In Python, the `=` operator has some very specific behavior. While this chapter may seem unecessarily complex at the moment, a basic understanding of objects and references can help you a lot later on. We've seen _many_ of our students and colleagues banging their heads against the wall trying to fix a "bug" in their code, only to realize it was a problem with the way they assigned and used variables.
44

55
% a short overview for this chapter
66

0 commit comments

Comments
 (0)