If I write a python script using only python standard libraries, using Python 2.6 will it work on all Operating Systems as long as python 2.6 is installed?
If I write a python script using only python standard libraries, using Python 2.6
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depends. There are a few parts of the Python standard libraries that are only available on certain platforms. These parts are noted in the Python documentation.
You also need to be careful of how you handle things like file paths – using
os.path.join()and such to make sure paths are formatted in the right way.