Re: Problems with running Python in Npp

2021-09-09 Thread Dennis Lee Bieber
On Wed, 8 Sep 2021 21:54:14 -0400, Ricardo declaimed the following: > Hey Python and crew I'm having difficulties installing and running Python > on my computer. I've seen plenty YouTube videos on how to set it up, but > none of them have worked. Any help or guidance will be greatly > app

Re: Change the display style of the text on the STACKLINE.

2021-09-09 Thread Roland Mueller via Python-list
Hello to 9. syysk. 2021 klo 6.53 hongy...@gmail.com (hongyi.z...@gmail.com) kirjoitti: > I'm using the following code in my forked project [1]: > > percol.view.STACKLINE = 'Fold:F1,F2,F3 Push:C-p Pop:M-p Script:M-s Dir:M-d > Dircmd:M-b' > > I would like to change the display style of the text men

Friday Finking: Contorted loops

2021-09-09 Thread dn via Python-list
Why does Python not have a repeat-until loop construct? (or should that be 'modern programming languages'?) This is a perennial question (one contributor calling it "immemorial"), but there seem to be reasons why the Python Interpreter would find such a construct awkward, or is otherwise unable to

Re: Friday Finking: Contorted loops

2021-09-09 Thread Terry Reedy
On 9/9/2021 5:36 PM, dn via Python-list wrote: Why does Python not have a repeat-until loop construct? 1. It is not needed. You covered that. 2. It is rare useful. For loops are common. While loops are occasional (nearly an order of magnitude less common than for loops. Fractional loop c

Re: Friday Finking: Contorted loops

2021-09-09 Thread Dennis Lee Bieber
On Fri, 10 Sep 2021 09:36:36 +1200, dn via Python-list declaimed the following: >Why does Python not have a repeat-until loop construct? >(or should that be 'modern programming languages'?) > I would suspect Python's indentation for block structure would be the major hindrance. After all

Re: Friday Finking: Contorted loops

2021-09-09 Thread 2QdxY4RzWzUUiLuE
On 2021-09-09 at 22:33:16 +, Stefan Ram wrote: > One can think of a language where every loop is exited this > way, the only loop construct would be > > loop > ... > > and it would /always/ have to be exited via enclosed breaks. I'm not quite sure what you mean by "one can," but

Re: Friday Finking: Contorted loops

2021-09-09 Thread Dennis Lee Bieber
On Thu, 09 Sep 2021 19:07:49 -0400, Dennis Lee Bieber declaimed the following: >On Fri, 10 Sep 2021 09:36:36 +1200, dn via Python-list > declaimed the following: Someone, please shoot me now... >>This is a perennial question (one contributor calling it "immemorial"), >>but there seem to

Re: Change the display style of the text on the STACKLINE.

2021-09-09 Thread hongy...@gmail.com
On Thursday, September 9, 2021 at 8:57:37 PM UTC+8, Roland Mueller wrote: > Hello > > to 9. syysk. 2021 klo 6.53 hongy...@gmail.com (hongy...@gmail.com) > kirjoitti: > > I'm using the following code in my forked project [1]: > > > > percol.view.STACKLINE = 'Fold:F1,F2,F3 Push:C-p Pop:M-p Scrip

Re: Change the display style of the text on the STACKLINE.

2021-09-09 Thread Roland Mueller via Python-list
pe 10. syysk. 2021 klo 8.53 hongy...@gmail.com (hongyi.z...@gmail.com) kirjoitti: > On Thursday, September 9, 2021 at 8:57:37 PM UTC+8, Roland Mueller wrote: > > Hello > > > > to 9. syysk. 2021 klo 6.53 hongy...@gmail.com (hongy...@gmail.com) > > kirjoitti: > > > I'm using the following code in my