Reputation: 1
I am using python 32-bits but I want to upgrade it to 64-bit to use some advanced modules. But I don't want to lose my 32-bit projects, suggest help, please.
Upvotes: 0
Views: 828
Reputation: 3550
Pure Python code is neither 32 nor 64 bits, because Python is a very high level programming language. When you run a Python program, the Python interpreter quickly compiles your source code to machine code and executes it.
It doesn't matter whether you use a 32 bit or 64 bit Python interpreter to execute your pure Python program, because the result should be the same. However, if your program uses libraries that contain non-Python code, you might have to reinstall the 64 bit version of those libraries.
So to conclude, don't be afraid to download and install the 64 bit version of Python because your Python programs will all run perfectly on it!
Upvotes: 1