test
September 11, 2016 Leave a comment
Test
>>> a = 1 >>> b = 2 >>> print(a) 1 >>> print(b) 2 >>> print(a+b) 3 >>> print(b-a) 1 >>> print(a<b) True