Inserting a newline code \n , \r\n into a string will result in a line break at that location. s = 'Line1\nLine2\nLine3' print(s) # Line1 ...
確定! 回上一頁