Python platform independent?
1 answer
Python bytecode itself is platform independent, assuming a complete implementation of a Python virtual machine.
There are certain modules and functions that are only available on certain platforms, so Python source code may be platform dependent if it uses them. The documentation indicates whether the name is only available on a limited subset of platforms, so they can be largely avoided to make it platform independent.
+3
source to share