QUESTION 5
Generally speaking, programs written in Python using the core language and standard libraries run the same across the supported platforms such as Windows, OSX, and Linux.
True FalseANS: True
Since, Python programs are eventually compiled into portable byte code, and runs the same on every platform installed with a Python compatible version. That means that Python programs using the core language and standard libraries run the same on Unix, MS Windows, and most other systems with a Python interpreter. Many Python ports also provide platform-specific extensions (e.g. MS Windows COM support), but even there, the core Python language and libraries works the same everywhere.
Get Answers For Free
Most questions answered within 1 hours.