Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!1.eu.feeder.erje.net!weretis.net!feeder4.news.weretis.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!abp001.ams.xsnews.nl!frontend-F10-11.ams.news.kpn.nl From: Cecil Westerhof Newsgroups: comp.lang.python Subject: implicitly concats of adjacent strings does not work with format Organization: Decebal Computing X-Face: "(y8cC@tg_12{">GF'UXTW]FHI2wMiZNrnf'1EFQ&O#$m:f#O7+7}kR,v+Pti8=Vi/Z"g^?b"E X-Homepage: http://www.decebal.nl/ Date: Wed, 29 Apr 2015 14:42:16 +0200 Message-ID: <877fsvcdhz.fsf@Equus.decebal.nl> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:l6eptxB0pcUSCDKzky7zZBhLjxY= MIME-Version: 1.0 Content-Type: text/plain Lines: 34 NNTP-Posting-Host: 81.207.62.244 X-Trace: 1430311490 news.kpn.nl 20626 81.207.62.244@kpn/81.207.62.244:42687 Xref: csiph.com comp.lang.python:89548 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. -- Cecil Westerhof Senior Software Engineer LinkedIn: http://www.linkedin.com/in/cecilwesterhof