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


Groups > comp.lang.python > #89548

implicitly concats of adjacent strings does not work with format

From Cecil Westerhof <Cecil@decebal.nl>
Newsgroups comp.lang.python
Subject implicitly concats of adjacent strings does not work with format
Organization Decebal Computing
Date 2015-04-29 14:42 +0200
Message-ID <877fsvcdhz.fsf@Equus.decebal.nl> (permalink)

Show all headers | View raw


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

Back to comp.lang.python | Previous | NextNext 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