Skip to content

Commit 04bf5df

Browse files
author
Andrew McCluskey
committed
remove hr from top of files
1 parent 8a948d6 commit 04bf5df

8 files changed

Lines changed: 24 additions & 21 deletions

File tree

_build/basics/basics.html

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,27 @@
77
next_page:
88
url: /basics/types.html
99
suffix: .md
10-
search: basics
10+
search: basics before start really python our chemistry applications necessary become familiar language chapter introduce those
1111

1212
comment: "***PROGRAMMATICALLY GENERATED, DO NOT EDIT. SEE ORIGINAL FILES IN /content***"
1313
---
1414

1515
<main class="jupyter-page">
1616
<div id="page-info"><div id="page-title">Basics</div>
1717
</div>
18-
18+
<div class="jb_cell">
19+
20+
<div class="cell border-box-sizing text_cell rendered"><div class="inner_cell">
21+
<div class="text_cell_render border-box-sizing rendered_html">
22+
<p>Before we can start to really use Python for our chemistry applications it is necessary that we become familiar with some of the basics of the language.
23+
This chapter will introduce some of those <strong>basics</strong>.</p>
24+
25+
</div>
26+
</div>
27+
</div>
28+
</div>
29+
30+
1931

2032

2133
</main>

_build/basics/collections.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
next_page:
1212
url: /basics/functions.html
1313
suffix: .ipynb
14-
search: types individual different collections python collection hr previously introduced exist beyond items including objects hold variables section introduce three lists numpy arrays dictionarys case acted ways
14+
search: types individual different collections python collection previously introduced exist beyond items including objects hold variables section introduce three lists numpy arrays dictionarys case acted ways
1515

1616
comment: "***PROGRAMMATICALLY GENERATED, DO NOT EDIT. SEE ORIGINAL FILES IN /content***"
1717
---
@@ -23,9 +23,7 @@
2323

2424
<div class="cell border-box-sizing text_cell rendered"><div class="inner_cell">
2525
<div class="text_cell_render border-box-sizing rendered_html">
26-
<hr>
27-
28-
<h1 id="Collections">Collections<a class="anchor-link" href="#Collections"> </a></h1><p>Previously, we were introduced to individual types that exist in Python.
26+
<p>Previously, we were introduced to individual types that exist in Python.
2927
Python types go beyond individual items, including objects that can hold <strong>collections</strong> of variables.
3028
This section will introduce three different collection types:</p>
3129
<ul>

_build/basics/functions.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
next_page:
1212
url:
1313
suffix: .ipynb
14-
search: function arguments code python return returned above keyword kineticenergy following value docstring variable hr functions however name used defined content whitespace not such definition within where information does length although example below cm run particular section statement followed brackets given mass velocity variables using block indentation needs note also path possible style before piece having case passed operation examples print type immediately set defining follows takes kinetic energy called center figure def removed point any pep standard book few tells line essential common inside addition shown means description includes google software expected scope occasionally reuse without allows segments performed already
14+
search: function arguments code python return returned above keyword kineticenergy following value docstring variable functions however name used defined content whitespace not such definition within where information does hr length although example below cm run particular section statement followed brackets given mass velocity variables using block indentation needs note also path possible style before piece having case passed operation examples print type immediately set defining follows takes kinetic energy called center figure def removed point any pep standard book few tells line essential common inside addition shown means description includes google software expected scope occasionally reuse without allows segments performed already
1515

1616
comment: "***PROGRAMMATICALLY GENERATED, DO NOT EDIT. SEE ORIGINAL FILES IN /content***"
1717
---
@@ -23,9 +23,7 @@
2323

2424
<div class="cell border-box-sizing text_cell rendered"><div class="inner_cell">
2525
<div class="text_cell_render border-box-sizing rendered_html">
26-
<hr>
27-
28-
<h1 id="Functions">Functions<a class="anchor-link" href="#Functions"> </a></h1><p>Occasionally, there is a particular piece of code that you would like to reuse over-and-over, without having to write the code over-and-over).
26+
<p>Occasionally, there is a particular piece of code that you would like to reuse over-and-over, without having to write the code over-and-over).
2927
For this case, Python allows the use of <em>functions</em>, these are segments of code to which arguments are passed and some operation is performed on them.
3028
You will have already encountered some examples of functions, such as <code>print()</code> and <code>type()</code>.
3129
However, in this section we will introduce how custom functions can be written for your code.

_build/basics/types.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
next_page:
1212
url: /basics/collections.html
1313
suffix: .ipynb
14-
search: type python numbers operations not float mathematical int string example b complex variable numerical types strings performed used data point notation any above possible where standard division important addition operator also center computer boolean component however operators order equal hr three textual variables either logic str nature between means line error case known exactly floating due logical information true false should interperator following code does multiplication times another defined follows shown decimal atom less different five operation returned upscaling therefore bool essentially single such particular specific function often text inverted commas quotation marks hello world greeting run programming exercise new
14+
search: type python numbers operations not float mathematical int string example b complex variable numerical types strings performed used data point notation any above possible where standard division important addition operator also center computer boolean component however operators order equal three textual variables either logic str nature between means line error case known exactly floating due logical information true false hr should interperator following code does multiplication times another defined follows shown decimal atom less different five operation returned upscaling therefore bool essentially single such particular specific function often text inverted commas quotation marks hello world greeting run programming exercise new
1515

1616
comment: "***PROGRAMMATICALLY GENERATED, DO NOT EDIT. SEE ORIGINAL FILES IN /content***"
1717
---
@@ -23,9 +23,7 @@
2323

2424
<div class="cell border-box-sizing text_cell rendered"><div class="inner_cell">
2525
<div class="text_cell_render border-box-sizing rendered_html">
26-
<hr>
27-
28-
<h1 id="Types">Types<a class="anchor-link" href="#Types"> </a></h1><p>Python essentially can be thought of as having three types of single object variable:</p>
26+
<p>Python essentially can be thought of as having three types of single object variable:</p>
2927
<ul>
3028
<li><strong>Strings</strong> - a textual variable, such as a word or a sentance </li>
3129
<li><strong>Numbers</strong> - some numerical information </li>

content/basics/basics.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
# Basics
1+
# Basics
2+
3+
Before we can start to really use Python for our chemistry applications it is necessary that we become familiar with some of the basics of the language.
4+
This chapter will introduce some of those **basics**.

content/basics/collections.ipynb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"<hr>\n",
8-
"\n",
97
"# Collections\n",
108
"\n",
119
"Previously, we were introduced to individual types that exist in Python. \n",

content/basics/functions.ipynb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"<hr>\n",
8-
"\n",
97
"# Functions\n",
108
"\n",
119
"Occasionally, there is a particular piece of code that you would like to reuse over-and-over, without having to write the code over-and-over). \n",

content/basics/types.ipynb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"<hr>\n",
8-
"\n",
97
"# Types\n",
108
"\n",
119
"Python essentially can be thought of as having three types of single object variable:\n",

0 commit comments

Comments
 (0)