How to write multiple strings in one line?

后端 未结 11 606
谎友^
谎友^ 2020-12-01 03:28

I\'ve started to learn Python with LPTHW and I\'ve gotten to exercise 16:

http://learnpythonthehardway.org/book/ex16.html

And feel like an idiot because I ca

相关标签:
11条回答
  • 2020-12-01 03:54

    Not sure if this is pythonic way, but it gets the job done anyway.

    a = f"""
    {line1}
    {line2}
    {line3}
    """
    target.write(a)
    
    0 讨论(0)
  • 2020-12-01 03:57
    target.write(line1 \n, line2 \n, line3 \n)
    

    '\n' only make sense inside a string literal. Without the quotes, you don't have string literals.

    target.write('line1 \n, line2 \n, line3 \n')
    

    Ok, now everything is a string literal. But you want line1, line2, line3 to not be string literals. You need those as python expressions to refer the variables in question. Basically, you have to put quotes around strings that are actually text like "\n" but not around variables. If you did that, you might have gotten something like:

    target.write(line1 '\n' line2 '\n' line3 '\n')
    

    What is 2 2? It's nothing. You have to specify to python how to combine the two pieces. So you can have 2 + 2 or 2 * 2 but 2 2 doesn't make any sense. In this case, we use add to combine two strings

    target.write(line + '\n' + line2 + '\n' + line3 + '\n')
    

    Moving on,

    target.write(%r \n, %r \n, %r \n) % (line1, line2, line3)
    

    Again \n only makes sense inside a string literal. The % operator when used to produce strings takes a string as its left side. So you need all of that formatting detail inside a string.

    target.write('%r \n', '%r \n', '%r \n') % (line1, line2, line3)
    

    But that produce 3 string literals, you only want one. If you did this, write complained because it excepts one string, not 3. So you might have tried something like:

    target.write('%r \n%r \n%r \n') % (line1, line2, line3)
    

    But you want to write the line1, line2, line3 to the file. In this case, you are trying to the formatting after the write has already finished. When python executes this it will run the target.write first leaving:

    None % (line1, line2, line3)
    

    Which will do nothing useful. To fix that we need to to put the % () inside the .write()

    target.write('%r\n%r\n%r\n' % (line1, line2, line3))
    
    0 讨论(0)
  • 2020-12-01 03:58

    target.write(line1 + ' ' + line2 + ' ' + line3 + ' ')

    If you want it on the same line, the above will work, if you want it on separate lines add the "\n" for new line.

    0 讨论(0)
  • 2020-12-01 04:00

    Don't try to overcomplicate it. The string works the same as when you print something, except you are starting with target.write instead so you can write it to the file instead of printing.

    For example, if you were going to print the variables and put them on a new line each you would use this string

    print(f"{line1} \n{line2} \n{line3} \n")

    In exercise 5, you learnt that to pull in a variable you need to put {} around the name you gave to the variable and if you want to pull variables into a string, you must start your string with f" In exercise 9, you learnt to use \n if you want to put something on a new line

    Now you want to write to the file instead of printing it so the string is the same except it starts with target.write this time target.write(f"{line1} \n{line2} \n{line3} \n")

    0 讨论(0)
  • 2020-12-01 04:01

    LPTHW: Exercise 16, Study Drill 3

    There's too much repetition in this file.

    Use strings, formats, and escapes to print out line1, line2, and line3 with just one target.write() command instead of six.

    more powerful implementation of target.write # Study Drill 3

    formatter = "{0}\n{1}\n{2}\n"
    target.write(formatter.format(line1,line2,line3))
    
    0 讨论(0)
提交回复
热议问题