Deutsch   English   Français   Italiano  
<vajerf$2qjbn$1@dont-email.me>

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

Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Lawrence D'Oliveiro <ldo@nz.invalid>
Newsgroups: comp.unix.shell,comp.unix.programmer,comp.lang.misc
Subject: Re: Python (was Re: I did not inhale)
Date: Tue, 27 Aug 2024 02:49:19 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 17
Message-ID: <vajerf$2qjbn$1@dont-email.me>
References: <uu54la$3su5b$6@dont-email.me> <uvbfii$3mom0$1@news.xmission.com>
	<20240412094809.811@kylheku.com> <87il0mm94y.fsf@tudado.org>
	<way-20240413091747@ram.dialup.fu-berlin.de> <87il0lldf8.fsf@tudado.org>
	<choices-20240413123957@ram.dialup.fu-berlin.de>
	<v9lm2k$12qhv$1@dont-email.me> <v9m4gd$14scu$1@dont-email.me>
	<20240815182717.189@kylheku.com> <v9npls$1fjus$1@dont-email.me>
	<v9t204$2dofg$1@dont-email.me> <va28pi$3dldm$1@dont-email.me>
	<va2ro9$3gd7v$1@dont-email.me> <va2vt0$3h3gj$1@dont-email.me>
	<va44rh$3p1l6$1@dont-email.me> <va45eq$3pkt9$1@dont-email.me>
	<va4aut$3q4g0$1@dont-email.me> <va4fbr$3qvij$1@dont-email.me>
	<va5108$3tmmd$1@dont-email.me> <va51ok$3tqr9$1@dont-email.me>
	<va5ec2$3vluh$1@dont-email.me> <va6q4g$c1a7$1@dont-email.me>
	<va6rpa$c6bg$1@dont-email.me> <va6se9$cb8e$1@dont-email.me>
	<20240826083330.00004760@gmail.com> <vaises$2k7o6$2@dont-email.me>
	<vaj0ts$2kusd$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 27 Aug 2024 04:49:20 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="546aa385814575b64d15f1d40accd158";
	logging-data="2968951"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX18G3LWVODU12eW46zmvdWVT"
User-Agent: Pan/0.160 (Toresk; )
Cancel-Lock: sha1:3eOSjMr/ShcNzbrSfeTDXHd4pEk=
Bytes: 2653

On Mon, 26 Aug 2024 23:51:40 +0100, Bart wrote:

> This might [...] the human reader but the redundancy really needs to be 
> supported by the language.

Consider what I mean by “redundancy”: it means the structure of the code 
is expressed two different ways.

In a conventional language with statement bracketing symbols, the compiler 
ignores the indentation, but you use that to delineate the same structure 
as defined by the actual language symbols, thereby providing redundancy to 
the human reader.

In Python, the compiler goes by the indentation, so I add standins for 
statement bracketing symbols in the form of “#end” comments: these are 
ignored by the compiler, but I use that as an alternative, redundant way 
of delineating the same program structure to the human reader.