This is the beginning of the hard math analysis
In [1]:
a = 5
In [2]:
b = a + 1
Let's mix some variables!
In [3]:
a + b
Out[3]:
11
In [4]:
z = a + b
In [6]:
z * 3
Out[6]:
33
This is the beginning of the hard math analysis
a = 5
b = a + 1
Let's mix some variables!
a + b
11
z = a + b
z * 3
33