HenHanna
2024-08-21 04:55:20 UTC
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)
)
)
)
)
)
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)
)
)
)
)
)