0

(And vice versa)

Or are there incompatibilities ?

PS: I will be using python 3.5.3 on 2 machines, but one on 64 bit and one on 32 bit. I will change writing/running scripts between the 2 machines often.

1
  • 1
    64-bit Python will generally use about twice as much memory as 32-bit Python and, as a result, may run a little slower. There are no incompatibilities between the two Commented Jun 9, 2017 at 12:33

2 Answers 2

4

Python is an interpreted language, not a compiled one. That basically means that if you're referring to pure Python code, that is, code that does not rely on any native compile libraries, the answer is yes.

If not, then I guess it depends on a bunch of things.

Sign up to request clarification or add additional context in comments.

Comments

2

Anything really created with 64bit Python will probably not run under a 32bit version (for example, .pyc byte code files). Plain text scripts (.py files) created with any text editor is however compatible with both 32 and 64 bit Python interpreters.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.