Re: all versions of python fail to indent after conditional statement

2021-04-10 Thread Russell via Python-list
I would recommend reading a book that introduces and explains Python rather than just diving in. I'm been enjoying "Introducing Python: Modern Computing in Simple Packages" which can be found at https://amzn.com/1492051365. It started from the beginning and would answer the questions/difficulties y

Re: all versions of python fail to indent after conditional statement

2021-04-02 Thread Mats Wichmann
On 4/2/21 9:42 AM, Joe Pfeiffer wrote: It's not a bug, it's a design choice you are disagreeing with: managing indentation is your job, not the interpreter's. For anything other than an absolutely trivial three-line script, I write in an editor that does a good job helping me manage indentation

Re: all versions of python fail to indent after conditional statement

2021-04-02 Thread Joe Pfeiffer
It's not a bug, it's a design choice you are disagreeing with: managing indentation is your job, not the interpreter's. For anything other than an absolutely trivial three-line script, I write in an editor that does a good job helping me manage indentation (in my case, emacs in Python mode). wr

Re: all versions of python fail to indent after conditional statement

2021-04-02 Thread MRAB
On 2021-04-02 01:40, mikedianete...@gmail.com wrote: The following snap shot of system prompt illustrates my problem. I have tried 3.8, 3.92 and 3.10 with the same result. When I run in the window interface it doesn't even display one row of ... but does print if I hit return tw

all versions of python fail to indent after conditional statement

2021-04-02 Thread mikedianeterry
The following snap shot of system prompt illustrates my problem. I have tried 3.8, 3.92 and 3.10 with the same result. When I run in the window interface it doesn't even display one row of ... but does print if I hit return twice. I'm new to Python and was excited about learning it b