Deutsch   English   Français   Italiano  
<va3rvp$3o8rf$1@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!news.mixmin.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: HenHanna <HenHanna@devnull.tb>
Newsgroups: comp.lang.lisp,comp.lang.python
Subject: name of the package (or style) that uses lots of extra lines in
 Python programming?
Date: Tue, 20 Aug 2024 21:55:20 -0700
Organization: A noiseless patient Spider
Lines: 31
Message-ID: <va3rvp$3o8rf$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 21 Aug 2024 06:55:21 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="757abca47a047dafa4ec5dd99cda8bf8";
	logging-data="3941231"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1+7Rn0weo9IC0MtS8mh7vU2ZTdBnCeaHNQ="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:NdPIUy9bD3uXfXKRzzbMkV6V5/g=
Content-Language: en-US
Bytes: 1584

What's the name of the package (or style) that uses
                   lots of  extra lines in Python programming?

it looks like this:

main()
{
       int c;
       .......
}

              like  Begin-End of Algol, Pascal  from 1960's and 1970's.



it'd look like this in Lisp:

        (define (fact x)
          (begin
               (if (zero? x)
                   1
                   (* x
                      (fact
                          (- x
                             1)
                      )
                   )
               )
           )
        )