When I run this as a file, it prints out True for both print statements.
a = 13579
b = 13579
print(a == b)
print(a is b)
But, it will show True and False if I run this in the Shell (I understand Python treats these two numbers as two objects); Where I got confused was why it shows True for both when running this as a Python file? Thank you!