Python is an intepreter between you and the computer. Python gives you the ability to analyze large sets of data quickly and efficiently along with an easy solution for data analysis.
Step 1:Open up a Jupyter editor.
Step 2:Select new->Python 3.
Step 3:Type in stuff.
Step 4:Press cntrl+enter to run the cell.
In [1]:
a=0
In [6]:
print(a)
In [3]:
a=1
In [5]:
print(a)
In [9]:
#Example
a=2
print(a)
print(a)
In [ ]: