0
Entering next row
I need little help. I cannot jump to next line in python
3 odpowiedzi
+ 7
Use \n
+ 5
QailBee 🤴🏼 it fully depends on the operating system what is truly needed. One of the main reasons C++ gave endl to output the end of line so it could automatically use the correct type for the current system. Most systems use \n, a few use \r\n, and at least one used \r, of the systems I used. Originally, \n moved down in the current column and \r stayed on the same line back to column 1.
+ 2
Isn’t it \r\n ?