I've come to a question regarding how to install 32 bit Python on Linux and another one on Windows. After reading I decided to find out which python I had, if it was 32 or 64 bits.
I've tried the following, but the difference in the results bugged me:
Python 2.7
import sys
sys.getsizeof(int(1))
>>> 24
Python 3.6
import sys
sys.getsizeof(int(1))
>>> 28
This answer helped me understand it, but I don't know a proper way to find out if I have 32 or 64 bit python.