Deutsch   English   Français   Italiano  
<vajeu0$2qks2$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:50:41 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 37
Message-ID: <vajeu0$2qks2$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>
	<20240826155113.000005ba@gmail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 27 Aug 2024 04:50:41 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="0a410b51be7b0d25514a712e66466478";
	logging-data="2970498"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1/Bu+0Mz2988wXHflp+LhVe"
User-Agent: Pan/0.160 (Toresk; )
Cancel-Lock: sha1:bb41po5h5pxxuilj5QKM57ztdes=
Bytes: 2420

On Mon, 26 Aug 2024 15:51:13 -0700, John Ames wrote:

> if condition:
>     foo()
>     
>     bar()
> 
> baz()
> 
> if one needs to re-arrange the order of operations, for reasons, and one
> is incautious about selecting and shuffling lines in one's editor, such
> that one ends up with this:
> 
> if condition:
>     bar()
> 
>     foo()
>     
> baz()

Try:

    if condition:
        foo()
        bar()
    #end if
    baz()

versus

    if condition:
        bar()
        foo()
    #end if
    baz()

Does that make things clearer?