Google Colab- Great Tool for Beginners and Experts

in Python3 years ago

If you want to start programming just with one click, try google Colab! For saving your codes and notes you better off signing through your Gmail/Google account. When signed, your files are saved in your Google Drive automatically.

You only need to click the +Code to insert a block for coding. This is a Python Notebook but is run on Google machines for free, without upgrade to their commercial Pro version. Try this if you are new to Python:

print ('Hello World!')

Then click on the Run/Play button. Or write your advanced code including plots, using pylab module, for example:

import pylab as pyl

x = []

y = []

for i in range (1,10):

     x.append(i)

     y.append(i)

dp = pyl.plot ( x , y )

pyl.show ( )

image.png

We will work on many python notebooks, both for new and advanced programmers.

Sort:  
Loading...

Coin Marketplace

STEEM 0.19
TRX 0.15
JST 0.029
BTC 64176.22
ETH 2624.19
USDT 1.00
SBD 2.78