Editing Community Data Science Workshops (Core)/Day 0 Tutorial

From CommunityData

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
{{Template:CDSW Header}}
Welcome to the Friday tutorial!
 
Welcome to the tutorial!


This tutorial covers several core programming concepts that we'll build upon during an interactive lecture tomorrow morning. It will take 1-2 hours to complete. There's a break in the middle, and exercises at the middle and end to help review the material.
This tutorial covers several core programming concepts that we'll build upon during an interactive lecture tomorrow morning. It will take 1-2 hours to complete. There's a break in the middle, and exercises at the middle and end to help review the material.


To get started, fire up a new Jupyter notebook. Name it as you like.
To get started, fire up a new Jupyter notebook. Name it as you like.  
 
[[File:Creating a python notebook in Jupyter.png|frame|From the Jupyter page, where you should look to create a python notebook!]]


This is an interactive tutorial! As you go through this tutorial, any time you see something that looks like this:
This is an interactive tutorial! As you go through this tutorial, any time you see something that looks like this:
Line 154: Line 150:
You can reassign variables if you want. What do you think will print if you type in:
You can reassign variables if you want. What do you think will print if you type in:
<syntaxhighlight lang="python">
<syntaxhighlight lang="python">
  x = 4</syntaxhighlight>
  x = 4
<syntaxhighlight lang="python">
 
  x
  x
</syntaxhighlight>
<syntaxhighlight lang="python">
  x = 5
  x = 5
</syntaxhighlight>
<syntaxhighlight lang="python">
  x
  x
</syntaxhighlight>
</syntaxhighlight>
Line 168: Line 158:
<syntaxhighlight lang="python">
<syntaxhighlight lang="python">
  x = 3
  x = 3
</syntaxhighlight>
<syntaxhighlight lang="python">
  y = 4
  y = 4
</syntaxhighlight>
<syntaxhighlight lang="python">
  x * y
  x * y
</syntaxhighlight>
<syntaxhighlight lang="python">
  x * x
  x * x
</syntaxhighlight>
<syntaxhighlight lang="python">
  2 * x - 1 * y
  2 * x - 1 * y
</syntaxhighlight>
</syntaxhighlight>
Line 284: Line 266:
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang="python">
<syntaxhighlight lang="python">
  len("")</syntaxhighlight>
  len("")
<syntaxhighlight lang="python">
 
  fish = "humuhumunukunukuapua'a"
  fish = "humuhumunukunukuapua'a"
</syntaxhighlight>
<syntaxhighlight lang="python">
  name_length = len(fish)
  name_length = len(fish)
</syntaxhighlight>
<syntaxhighlight lang="python">
  fish + " is a Hawaiian fish whose name is " + str(name_length) + " characters long."
  fish + " is a Hawaiian fish whose name is " + str(name_length) + " characters long."
</syntaxhighlight>
</syntaxhighlight>
Line 321: Line 297:
One fun thing about strings in Python is that you can multiply them:
One fun thing about strings in Python is that you can multiply them:
<syntaxhighlight lang="python">
<syntaxhighlight lang="python">
  "A" * 40</syntaxhighlight>
  "A" * 40
<syntaxhighlight lang="python">
  "ABC" * 12
 
  "ABC" * 12</syntaxhighlight>
<syntaxhighlight lang="python">
  h = "Happy"
  h = "Happy"
  b = "Birthday"
  b = "Birthday"
Line 341: Line 314:
  total = 1.5 - 1/2
  total = 1.5 - 1/2
  total
  total
  print(type(total))
  type(total)
</syntaxhighlight>
</syntaxhighlight>


Line 349: Line 322:
  b =  "brown"
  b =  "brown"
  c = "fox jumps over the lazy dog"
  c = "fox jumps over the lazy dog"
  print("The " +  a * 3 + " " +  b * 3 + " " + c)
  "The " +  a * 3 + " " +  b * 3 + " " + c
</syntaxhighlight>
</syntaxhighlight>
==End of Part 1==
==End of Part 1==


Line 385: Line 357:
&nbsp;&nbsp;&nbsp;&nbsp;<code>if 6 > 5:</code><br />
&nbsp;&nbsp;&nbsp;&nbsp;<code>if 6 > 5:</code><br />
<br />
<br />
part, and press Enter. <!-- The next line will have <code>...</code> as a prompt, instead of the usual <code>&gt;&gt;&gt;</code>. This is Python telling us that we are in the middle of a '''code block''', and so long as we indent our code it should be a part of this code block. -->.</li>
part, and press Enter. The next line will have <code>...</code> as a prompt, instead of the usual <code>&gt;&gt;&gt;</code>. This is Python telling us that we are in the middle of a '''code block''', and so long as we indent our code it should be a part of this code block.</li>


<!-- li>Press the spacebar 4 times to indent.</li -->
<li>Press the spacebar 4 times to indent.</li>
<li>You'll notice that your text caret (|) will be indented by four spaces. This is important, and it tells python that you're telling it what to do with your if statement.</li>
<li>Type<br />
<li>Type<br />
<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;<code>print("Six is greater than five!")</code><br /><br /></li>
&nbsp;&nbsp;&nbsp;&nbsp;<code>print("Six is greater than five!")</code><br /><br /></li>
<!-- li>Press Enter to end the line. The prompt will still be a <code>...</code></li -->
<li>Press Enter to end the line. The prompt will still be a <code>...</code></li>
<li>Press shift-enter to tell Jupyter to run that block of code.</li>
<li>Press Enter one more time to tell Python you are done with this code block. The code block will now execute.</li>
</ol>
</ol>


Line 584: Line 555:
===I was expecting python to print lots of lines of text when I ran this cell, but it only prints one line!===
===I was expecting python to print lots of lines of text when I ran this cell, but it only prints one line!===
Jupyter only outputs the last line of a code chunk unless you explicitly wrap the code in print() statements. If you split your code into multiple chunks or print() the line, it should look like you expect.
Jupyter only outputs the last line of a code chunk unless you explicitly wrap the code in print() statements. If you split your code into multiple chunks or print() the line, it should look like you expect.
===There are weird numbers next to my code and I didn't type them!===
Those are line numbers. You can turn them off in the View:Toggle Line Numbers option at the top of the notebook.
[[Category:Shared_Pages]]
[[Category:Shared_Pages]]
[[Category:CDSW]]
[[Category:CDSW]]
Please note that all contributions to CommunityData are considered to be released under the Attribution-Share Alike 3.0 Unported (see CommunityData:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel Editing help (opens in new window)

Template used on this page: