Using Python
Contents
Using Python¶
The Python REPL (Read Evaluate Print Loop)¶
Assuming you have Python installed on your system, you can launch the REPL using the
python
command in a terminal
To launch the REPL:
You can then enter commands in and hit Enter
to run a command
You can exit using the exit()
function
Alternatively, press ctrl + d
to exit from terminal (this sends an end of file signal).
Python Scripts¶
Python scripts are text files stored with a .py
extension. You can run scripts from the command line
First, let’s create a simple Python script which just prints a string:
You will now have a file hello.py
You can run the script by executing python hello.py
Here’s a slightly more complex example.
(pycourse) $ cat script.py
"""
A simple python script
run from the terminal using
$ python script.py
"""
# printing will print to the terminal
print("hello world")
# you can do anything in your script
# define functions or classes
# import packages
# and so on...
def f(a, b):
"""
returns the sum of a and b
"""
return a + b
a = 1
b = 2
print(f"{a} + {b} = {f(a,b)}")
When we run the script:
Jupyter Notebooks¶
Jupyter (Julia, Python, R) notebooks mix code with markdown (a language for basic text formatting) in your browser. This document is a Jupyter notebook, and the text is written in markdown.
Installing Jupyter¶
First, launch a terminal, and install notebooks in your base environment
(-c conda-forge
tells conda
to install from the conda-forge
channel).
Test your installation¶
After installation, you should see a jupyter
command is now available.
Install A Kernel for your environment¶
The next thing you need to do is install a kernel for your pycourse
environment. This will allow you to run code in Jupyter notebooks using the same setup as you would if you activate pycourse
.
First, activate your pycourse
environment in a terminal
Next, install the ipykernel
package using conda
Now, you run the installation
Finally, deactivate your pycourse
environment
Launch a Jupyter notebook server¶
Now, to launch a Jupyter notebook server, simply type
You can launch the notebook server from any directory.
You can either create new notebooks, or launch existing notebooks.