marp |
---|
true |
- Colab is short for Google Colaboratory
- Free, in-the-browser programming environment
- Requires no setup
- Runs entirely on the Cloud
- Similar to a Jupyter notebook that is stored in Google Drive
- Available at https://colab.research.google.com
A notebook contains movable cells which are either code or text cells
Write all code in Python 3.
- Variables you define in one cell can later be used in other cells
- It DOES NOT matter what order the cells appear in
- It DOES matter the order in which cells are run
- Contain explanatory text and images
- Are formatted using using a simple markup language called markdown
**bold** = bold OR __bold__ = bold
*italic* = italic OR _italic_ = italic
~~strikethrough~~ = strikethrough
Create an Ordered List Input:
1. Item 1
1. Item 2
Output:
- Item 1
- Item 2
Create an Unordered List Input:
* Item
* Item
Output:
- Item 1
- Item 2
Input:
* Item
1. Item 1
1. Item 2
* Item
1. Item 1
1. Item 2
Output:
Input:
[Text](http://...)
Output:
Input:
Language | Creator(s)
--- | ---
Python | Guido van Rossum
R | Ross Ihaka, Robert Gentleman
Java | James Gosling
Output:
Input:
$\sqrt{3x-1}+(1+x)^2$
Output:
- Sharing a Colab notebook is as easy as sharing a Google Doc
- Can export the notebook to Github or download the file as .ipynb
- Downloaded file is compatible for use with Jupyter Notebook or compatible environments
- Use Seedbank to find shared Colab notebooks
- Limited collaborative editing works (use with caution!)