Exception handling for socket.error in Python 3.5/RStudio

Chris Angelico rosuav at gmail.com
Fri Feb 5 16:01:17 EST 2016


On Sat, Feb 6, 2016 at 6:58 AM,  <shaunak.bangale at gmail.com> wrote:
> I am running this python script on R-studio. I have Python 3.5 installed on my system.
>

Let's just try a quick smoke test. Run this script:

import sys
print(sys.version)
input("Press Enter to exit...")

That'll tell you a few things about how your system is set up. Most
notably, if it doesn't say you're using Python 3.5, there's a problem.

ChrisA



More information about the Python-list mailing list