Re: Error issue - Kindly resolve

2020-11-22 Thread MRAB
On 2020-11-22 19:17, sheetal chavan via Python-list wrote: Dear Sir/Madam,I am trying to install python on my laptop with windows 7, 32 bit operating system with service pac 1 installed. I have installed python 3.7.1 and some more versions but while opening the command prompt always it is showi

Re: Error issue - Kindly resolve

2020-11-22 Thread Igor Korot
Hi, Sheetal, On Sun, Nov 22, 2020 at 2:44 PM sheetal chavan via Python-list wrote: > > Dear Sir/Madam,I am trying to install python on my laptop with windows 7, 32 > bit operating system with service pac 1 installed. I have installed python > 3.7.1 and some more versions but while opening the c

Error issue - Kindly resolve

2020-11-22 Thread sheetal chavan via Python-list
Dear Sir/Madam,I am trying to install python on my laptop with windows 7, 32 bit operating system with service pac 1 installed. I have installed python 3.7.1 and some more versions but while opening the command prompt always it is showing the message as :The above program can’t start because ap

Re: Automatically advancing a bi-directional generator to the point of accepting a non-None value?

2020-11-22 Thread Dieter Maurer
Go Luhng wrote at 2020-11-21 14:30 -0500: >Suppose we write a very simple bi-directional generator in Python: > >def share_of_total(): >s = 0 >new_num = 0 >while True: >new_num = yield new_num / (s or 1) >s += new_num > >share_calculator = sha