Re: PyCharm installation

2019-05-19 Thread Jorge Gimeno
On Sun, May 19, 2019, 3:27 AM Syed Rizvi wrote: > Hi, > > I tried to install PyCharm. First time when I installed it, it worked > well. It developed some problem and when I reinstalled PyCharm, it gives me > error. I have installed it several times but could not install it > > I am unable to

Re: version

2018-05-31 Thread Jorge Gimeno
Look at the six module On Thu, May 31, 2018, 7:57 PM Mike McClain wrote: > OK so I installed python 3.2, which is the latest available as a > package in Debian Wheezy, because I've seen so many folks say it's a > waste of time to play with Py2.7. > Immediately my python playground

www.python.org down

2018-04-30 Thread Jorge Gimeno
Not sure who to report to, but the site comes back with a 503. Anyone know where I can direct this to? -Jorge L. Gimeno -- https://mail.python.org/mailman/listinfo/python-list

Re: exception should not stop program.

2017-10-07 Thread Jorge Gimeno
Catching all exceptions in a try-except block is almost always a bad idea. You can't tell the difference between an exception that you are looking to handle and an exception that should cause your program to crash and burn (because something is wrong). It's best to catch a specific exception. What

Re: newb question about @property

2017-10-03 Thread Jorge Gimeno
No, I see this as teaching the skills involved to drive a car. Practicing a turn, scanning gauges, and checking blind spots are all a part of driving. When one is learning, it's easier to learn these in isolation so when the problem must be solved in real time, you know what to do. This is no

Fwd: Operator Precedence/Boolean Logic

2016-06-22 Thread Jorge Gimeno
On Tue, Jun 21, 2016 at 8:40 PM, Elizabeth Weiss wrote: > Hi There, > > I am a little confused as to how this is False: > > False==(False or True) > > I would think it is True because False==False is true. > > I think the parenthesis are confusing me. > > (False==False) or