Im curious, why does it not equals True in one python version and False in another and vise versa.
big_num_1 = 1000
big_num_2 = 1000
small_num_1 = 1
small_num_2 = 1
print(big_num_1 is big_num_2) # python2 output True; python3 output False
print(small_num_1 is small_num_2) # python2 output False; python3 output True
funny thing is my sublime text editor in Python3 does output both as True, where in Terminal it outputs as stated above