What is Google Colab¶
Colab is a free Jupyter notebook environment that runs entirely in the cloud. Most importantly, it does not require a setup and the notebooks that you create can be simultaneously edited by your team members - just the way you edit documents in Google Docs
Google Colab is a project from Google Research, a free, Jupyter based environment that allows us to create Jupyter [programming] notebooks to write and execute Python [1](and other Python-based third-party tools and machine learning frameworks such as Pandas, PyTorch, Tensorflow, Keras, Monk, OpenCV, and others) in a web browser.
In [ ]:
Copied!
from IPython.display import YouTubeVideo
# play from 38 seconds on if short on time
YouTubeVideo('yEIc9z-Ad3k', width=800, height=600)
from IPython.display import YouTubeVideo
# play from 38 seconds on if short on time
YouTubeVideo('yEIc9z-Ad3k', width=800, height=600)
Out[ ]:
In [ ]:
Copied!
YouTubeVideo('inN8seMm7UI', width=800, height=600)
YouTubeVideo('inN8seMm7UI', width=800, height=600)
Out[ ]:
Basic uses and Tour¶
- Run Python code
- introductory notebook from google
- tutorials point quick start
In [ ]:
Copied!
seconds_in_a_day = 24 * 60 * 60
seconds_in_a_day
seconds_in_a_day = 24 * 60 * 60
seconds_in_a_day
Out[ ]:
86400
In [ ]:
Copied!
6*3
6*3
Out[ ]:
18
In [ ]:
Copied!