Skip to content

Commit 84e77e0

Browse files
committed
deploy: 88966e8
1 parent 47c12e3 commit 84e77e0

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

Lesson_1_Basics/Lesson_1_Student_Version.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ <h1 class="title"><span class="chapter-title">Lesson 1 - Basic Introduction to P
288288
<figcaption>Open In Colab</figcaption>
289289
</figure>
290290
</div>
291+
<p>title: “Lesson 1 – Basic Introduction to Programming in Python: Operators and Data Types” jupyter: python3 format: live-html</p>
291292
<section id="learning-objectives" class="level3">
292293
<h3 class="anchored" data-anchor-id="learning-objectives">Learning objectives</h3>
293294
<p>Students will gain an introduction to programming in python, working in interactive notebooks, and learning how to leverage outside resources for coding help. Moreoever students will gain a basic understanding of variables, data types, and working with simple expressions for comparison and computation.</p>
@@ -312,7 +313,7 @@ <h4 class="anchored" data-anchor-id="introduction-to-jupyter-notebooks-and-googl
312313
<p>“The Jupyter Notebook is an incredibly powerful tool for interactively developing and presenting data science projects. A notebook integrates code and its output into a single document that combines visualizations, narrative text, mathematical equations, and other rich media. The intuitive workflow promotes iterative and rapid development, making notebooks an increasingly popular choice at the heart of contemporary data science, analysis, and increasingly science at large.” - <a href="https://www.dataquest.io/blog/jupyter-notebook-tutorial/">dataquest</a></p>
313314
<p>All of our lessons will be presented in Jupyter notebooks due to their interactive nature (.ipynb file extension). They consist of two main attributes, a <code>kernel</code> and <code>cells</code>. * A <code>kernel</code> interprets and executes the code. Here we are using the kernel for python; however, you can specify a kernel for another language like R. * A <code>cell</code> is a container for either text or code to be executed.</p>
314315
<p>To run the python code in a cell, you just hit shift + enter. Try it with the code below.</p>
315-
<div id="cell-7" class="cell" data-quarto="{&quot;engine&quot;:&quot;pyodide&quot;,&quot;autorun&quot;:false,&quot;echo&quot;:true}">
316+
<div id="cell-7" class="cell" data-quarto="{&quot;autorun&quot;:false,&quot;echo&quot;:true,&quot;engine&quot;:&quot;pyodide&quot;}">
316317
<div class="sourceCode cell-code" id="cb1"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="bu">print</span>(<span class="st">'hello world'</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
317318
</div>
318319
</section>

0 commit comments

Comments
 (0)