Skip to content

Commit

Permalink
Render toc-less
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 26, 2024
1 parent c776479 commit c696c72
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/no_toc/01-intro-to-computing.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ And there is an operational equivalent:
We will mostly look at functions with input arguments and return types in this course, but not all functions need to have input arguments and output return. Let's look at some examples of functions that don't always have an input or output:

| Function call | What it takes in | What it does | Returns |
|----------------|----------------|-------------------------|----------------|
|---------------------------------------------------------------------------|--------------------------|---------------------------------------------------------------|---------|
| [`pow(a, b)`](https://docs.python.org/3/library/functions.html#pow) | integer `a`, integer `b` | Raises `a` to the `b`th power. | Integer |
| [`time.sleep(x)`](https://docs.python.org/3/library/time.html#time.sleep) | Integer `x` | Waits for `x` seconds. | None |
| [`dir()`](https://docs.python.org/3/library/functions.html#dir) | Nothing | Gives a list of all the variables defined in the environment. | List |
Expand Down
2 changes: 1 addition & 1 deletion docs/no_toc/02-data-structures.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ The list data structure we have been working with is an example of an **Object**

- **Attributes** that hold subset or additional data for the object.

- Functions called **Methods** that automatically takes the object as input.
- Functions called **Methods** that are for the object and *have to* take in the variable referenced as an input

This organizing structure on an object applies to pretty much all Python data types and data structures.

Expand Down
2 changes: 1 addition & 1 deletion docs/no_toc/About.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ These credits are based on our [course contributors table guidelines](https://ww
## collate en_US.UTF-8
## ctype en_US.UTF-8
## tz Etc/UTC
## date 2024-09-25
## date 2024-09-26
## pandoc 3.1.1 @ /usr/local/bin/ (via rmarkdown)
##
## ─ Packages ───────────────────────────────────────────────────────────────────
Expand Down
2 changes: 1 addition & 1 deletion docs/no_toc/about-the-authors.html
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ <h1>About the Authors<a href="about-the-authors.html#about-the-authors" class="a
## collate en_US.UTF-8
## ctype en_US.UTF-8
## tz Etc/UTC
## date 2024-09-25
## date 2024-09-26
## pandoc 3.1.1 @ /usr/local/bin/ (via rmarkdown)
##
## ─ Packages ───────────────────────────────────────────────────────────────────
Expand Down
8 changes: 4 additions & 4 deletions docs/no_toc/intro-to-computing.html
Original file line number Diff line number Diff line change
Expand Up @@ -445,10 +445,10 @@ <h3><span class="header-section-number">1.7.1</span> Execution rule for function
<p>We will mostly look at functions with input arguments and return types in this course, but not all functions need to have input arguments and output return. Let’s look at some examples of functions that don’t always have an input or output:</p>
<table>
<colgroup>
<col width="21%" />
<col width="21%" />
<col width="34%" />
<col width="21%" />
<col width="43%" />
<col width="15%" />
<col width="36%" />
<col width="5%" />
</colgroup>
<thead>
<tr class="header">
Expand Down
2 changes: 1 addition & 1 deletion docs/no_toc/search_index.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/no_toc/working-with-data-structures.html
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ <h2><span class="header-section-number">2.2</span> Objects in Python<a href="wor
<ul>
<li><p><strong>Value</strong> that holds the essential data for the object.</p></li>
<li><p><strong>Attributes</strong> that hold subset or additional data for the object.</p></li>
<li><p>Functions called <strong>Methods</strong> that automatically takes the object as input.</p></li>
<li><p>Functions called <strong>Methods</strong> that are for the object and <em>have to</em> take in the variable referenced as an input</p></li>
</ul>
<p>This organizing structure on an object applies to pretty much all Python data types and data structures.</p>
<p>Let’s see how this applies to the list:</p>
Expand Down

0 comments on commit c696c72

Please sign in to comment.