I'm using a little piece of Python code to see the system info. When I try this on my system, I got these;
>>> import platform
>>> platform.machine()
'AMD64'
>>> platform.platform()
'Windows-7-6.1.7601-SP1'
>>>
AMD64 means my system is 64-bit, how ever; when I go to C, there is (x86) next to Program Files. Since x86 means 32-bit, why does x86 is there if my system is 64-bit?