Home > Article > Backend Development > How to wrap lines when writing in python
The code in Python is usually written in one line, but if you can’t finish writing in one line, how can you continue writing in a new line?
Code line breaks in python are divided into two situations
1. Direct line breaks in the code: spaces\
2. Add brackets, () {} [] do not need to add special line breaks
#3. There is also a new line break in a string that is similar to code line break. You must use triple quotes to achieve this purpose (single/double can be used) , this method can output the newline character in the string without string concatenation \n.
The above is the detailed content of How to wrap lines when writing in python. For more information, please follow other related articles on the PHP Chinese website!