Il 30/06/2020 23:46, Joe Pfeiffer ha scritto:
> "Peter J. Holzer" writes:
>
>> On 2020-06-24 15:33:16 -0600, Joe Pfeiffer wrote:
>>> One other note -- while you may want various good-looking fonts with
>>> ligatures in other domains, for writing code a monospace font with no
>>> ligatures lets yo
Il 18/07/2019 12:27, Ben Bacarisse ha scritto:
> Irv Kalb writes:
>
>> I have always thought that split and join are opposite functions. For
>> example, you can use a comma as a delimiter:
>>
> myList = ['a', 'b', 'c', 'd', 'e']
> myString = ','.join(myList)
> print(myString)
>> a,b,
Il 07/06/2019 19:31, Rich Shepard ha scritto:
> On Fri, 7 Jun 2019, MRAB wrote:
>
>> It's possible that the error is actually on the previous line and that it
>> thinks that what's on line 35 is a continuation of what's on line 34, but
>> it isn't.
>
> MRAB,
>
> If that's the case I'm missing se
Il 17/01/2015 12.07, Marko Rauhamaa ha scritto:
> Jussi Piitulainen :
>
>> a+ b => 7 # a() + b
>> a +b => 3 # a(+b) => a(b) => a(1) = 1 + 2
>>
>> I'm not quite fond of such surprise in programming language syntax.
>
> Yes, whoever came up with the idea of whitespace having syntactic
> sig