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

Liste des GroupesRevenir à cl lisp 
Sujet : name of the package (or style) that uses lots of extra lines in Python programming?
De : HenHanna (at) *nospam* devnull.tb (HenHanna)
Groupes : comp.lang.lisp comp.lang.python
Date : 21. Aug 2024, 06:55:20
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <va3rvp$3o8rf$1@dont-email.me>
User-Agent : Mozilla Thunderbird
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)
                      )
                   )
               )
           )
        )

Date Sujet#  Auteur
21 Aug 24 * name of the package (or style) that uses lots of extra lines in Python programming?4HenHanna
21 Aug 24 +- Re: name of the package (or style) that uses lots of extra lines in Python programming?1rbowman
21 Aug 24 `* Re: name of the package (or style) (Posting On Python-List Prohibited)2HenHanna
22 Aug 24  `- Re: name of the package (or style) (Posting On Python-List Prohibited)1Lawrence D'Oliveiro

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal