Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #89553

Re: implicitly concats of adjacent strings does not work with format

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!us.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!newsfeed.straub-nv.de!newsfeed.pionier.net.pl!feed.xsnews.nl!border03.ams.xsnews.nl!feeder04.ams.xsnews.nl!abp002.ams.xsnews.nl!frontend-F09-18.ams.news.kpn.nl
From Cecil Westerhof <Cecil@decebal.nl>
Newsgroups comp.lang.python
Subject Re: implicitly concats of adjacent strings does not work with format
Organization Decebal Computing
References <877fsvcdhz.fsf@Equus.decebal.nl> <mailman.86.1430313312.3680.python-list@python.org>
X-Face "(y8cC@tg_12{">GF'UXTW]FHI2wMiZNrnf'1EFQ&O#$m:f#O7+7}kR<J%a^F2lh4[N~Yz4 nSp#c+aQo1b5=?HcNEkQ7QzF<])O3X4MDL/AYjys&*mt>,v+Pti8=Vi/Z"g^?b"E
X-Homepage http://www.decebal.nl/
Date Wed, 29 Apr 2015 16:40:31 +0200
Message-ID <87383jc80w.fsf@Equus.decebal.nl> (permalink)
User-Agent Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)
Cancel-Lock sha1:Ix9yl4fkrTPSL84auu1vDce0abo=
MIME-Version 1.0
Content-Type text/plain; charset=utf-8
Content-Transfer-Encoding 8bit
Lines 61
NNTP-Posting-Host 81.207.62.244
X-Trace 1430318689 news.kpn.nl 18100 81.207.62.244@kpn/81.207.62.244:43282
Xref csiph.com comp.lang.python:89553

Show key headers only | View raw


Op Wednesday 29 Apr 2015 15:14 CEST schreef Dave Angel:

> On 04/29/2015 08:42 AM, Cecil Westerhof wrote:
>> I have the folowing print statements:
>> print(
>> 'Calculating fibonacci_old, fibonacci_memoize and '
>> 'fibonacci_memoize once for {0} '.format(large_fibonacci))
>>
>>
>> print(
>> 'Calculating fibonacci_old, fibonacci_memoize and '
>> 'fibonacci_memoize once for {0} '.format(large_fibonacci) +
>> 'to determine speed increase')
>>
>> print(
>> 'Calculating fibonacci_old, fibonacci_memoize and '
>> 'to determine speed increase'
>> 'fibonacci_memoize once for {0} '.format(large_fibonacci))
>>
>>
>> print(
>> 'Calculating fibonacci_old, fibonacci_memoize and '
>> 'fibonacci_memoize once for {0} '.format(large_fibonacci)
>> 'to determine speed increase')
>>
>> The first three work, but the last gives:
>> 'to determine speed increase')
>> ^
>> SyntaxError: invalid syntax
>>
>> Not very important, because I can use the second one, but I was
>> just wondering why it goes wrong.
>>
>
> Adjacent string literals are concatenated. But once you've called a
> method (.format()) on that literal, you now have an expression, not
> a string literal.
>
> You could either change the last line to
>
> + 'to determine speed increase')
>
> or you could concatenate all the strings before calling the format
> method:
>
>
> print(
> 'Calculating fibonacci_old, fibonacci_memoize and '
> 'fibonacci_memoize once for {0} '
> 'to determine speed increase' .format(large_fibonacci))

I now use this, I did not know that the addjacent-concatenation
occurred at compile time.
I spend a ‘little‘ time, but it was worth it.

From the amount of messages you could think I am a spammer. ;-)

-- 
Cecil Westerhof
Senior Software Engineer
LinkedIn: http://www.linkedin.com/in/cecilwesterhof

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

implicitly concats of adjacent strings does not work with format Cecil Westerhof <Cecil@decebal.nl> - 2015-04-29 14:42 +0200
  Re: implicitly concats of adjacent strings does not work with format Dave Angel <davea@davea.name> - 2015-04-29 09:14 -0400
    Re: implicitly concats of adjacent strings does not work with format Cecil Westerhof <Cecil@decebal.nl> - 2015-04-29 16:40 +0200
      Re: implicitly concats of adjacent strings does not work with format Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-04-29 17:04 +0100
        Re: implicitly concats of adjacent strings does not work with format Cecil Westerhof <Cecil@decebal.nl> - 2015-04-29 19:08 +0200
          Re: implicitly concats of adjacent strings does not work with format Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-04-29 21:51 +0100
            Re: implicitly concats of adjacent strings does not work with format Cecil Westerhof <Cecil@decebal.nl> - 2015-04-29 23:51 +0200

csiph-web