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.lispcomp.lang.python Date : 21. Aug 2024, 05: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?