Python in Jupyter: Difference between revisions

From CommunityData
(cats)
No edit summary
Line 8: Line 8:




===Start your text editor===
===Download and start your text editor ===
[[File:Macos-anaconda-nav-hub.png|frameless|400px]]


# Launch the Visual Studio Code text editor.  
# Launch Anaconda Navigator
# Start a new, blank text file.
# Find the "VSCode" application in the Anaconda Navigator window. If it is not yet installed, click "Install" (this may take a few minutes)
# Launch the VSCode text editor.  
# Click "New file" to start a new, blank text file.


===Write and save a short Python script===
===Write and save a short Python script===
Line 25: Line 28:
===Run the script===
===Run the script===


# Start a new terminal prompt. See the [[Windows terminal navigation|terminal navigation on Windows]] instructions for the steps to do this. Recall that a terminal prompt will look like <code>C:\</code> and a Python prompt will look like <code>>>></code>. Make sure you are at a terminal prompt and not a Python prompt; if you are at a Python prompt, you can type <code>exit()</code> on a line by itself and then press enter to exit Python and return to a terminal prompt.
# Start a new terminal prompt. See the [[Windows terminal navigation|terminal navigation on Windows]] or [[MacOS_terminal_navigation|terminal navigation on Mac]] instructions for the steps to do this. Recall that on Windows a terminal prompt will look like <code>C:\</code> and a Python prompt will look like <code>>>></code>. Make sure you are at a terminal prompt and not a Python prompt; if you are at a Python prompt, you can type <code>exit()</code> on a line by itself and then press enter to exit Python and return to a terminal prompt.
# Navigate to your Desktop directory from a PowerShell terminal prompt, using the <code>ls</code> and <code>cd</code> commands. See the [[Windows terminal navigation|terminal navigation on Windows]] instructions for a refresher on using these commands. Don't hesitate to get help from a mentor on this step if you need it -- it's a new way of navigating around your computer, so it may be unintuitive at first!
# Navigate to your Desktop directory from a PowerShell terminal prompt, using the <code>ls</code> and <code>cd</code> commands. See the [[Windows terminal navigation|terminal navigation on Windows]] instructions for a refresher on using these commands. Don't hesitate to get help from a mentor on this step if you need it -- it's a new way of navigating around your computer, so it may be unintuitive at first!
# Once you are in your Desktop directory, you'll see <code>hello.py</code> in the output of <code>ls</code>.
# Once you are in your Desktop directory, you'll see <code>hello.py</code> in the output of <code>ls</code>.

Revision as of 02:52, 15 January 2020

We are going to practice writing and running Python programs (often called "scripts").

TODO:

  • Download a sample notebook
  • Make sure the notebook is in your desktop (this keeps things simple)
  • Open the notebook in jupyter tab in browser.
  • Notebook itself should encourage them to run some cells.


Download and start your text editor

Macos-anaconda-nav-hub.png

  1. Launch Anaconda Navigator
  2. Find the "VSCode" application in the Anaconda Navigator window. If it is not yet installed, click "Install" (this may take a few minutes)
  3. Launch the VSCode text editor.
  4. Click "New file" to start a new, blank text file.

Write and save a short Python script

  1. Add the following line to your new text file:
print("Hello World!")
  1. Save the script as hello.py in your Desktop directory. The .py extension indicates that this file contains Python code.

Run the script

  1. Start a new terminal prompt. See the terminal navigation on Windows or terminal navigation on Mac instructions for the steps to do this. Recall that on Windows a terminal prompt will look like C:\ and a Python prompt will look like >>>. Make sure you are at a terminal prompt and not a Python prompt; if you are at a Python prompt, you can type exit() on a line by itself and then press enter to exit Python and return to a terminal prompt.
  2. Navigate to your Desktop directory from a PowerShell terminal prompt, using the ls and cd commands. See the terminal navigation on Windows instructions for a refresher on using these commands. Don't hesitate to get help from a mentor on this step if you need it -- it's a new way of navigating around your computer, so it may be unintuitive at first!
  3. Once you are in your Desktop directory, you'll see hello.py in the output of ls.
  4. Type
python hello.py

and press enter. Doing this will cause Python to execute the contents of that script -- it should print "Hello World!" to the screen. What you've done here is run the Python application with an argument -- the name of a file, in this case "hello.py". Python knows that when you give it a file name as an argument, it should execute the contents of the provided file. You get the same result as if you typed

print("Hello World!")

at a Python prompt and press enter.

Success

You created and ran your first Python script!

  • When you run the python command by itself, you start a Python prompt. You can execute Python code interactively at that prompt.
  • When you run the python command with a file name as an argument, Python executes the Python code in that file.

Champagne.pngParty.png