Home > Article > Backend Development > What does t mean in python
What does t mean in python?
T in python refers to "\r": carriage return character, returning to the beginning of this line, meaning return.
Other related:
\n: Newline character, to the same position on the next line, with the same ordinate, meaning new line.
\t: Tab character, in order to align top and bottom without using a table, meaning table.
Enter is equivalent to \n\r, so the mark of Enter is down, then forward. Of course, \n\r is equivalent to \r\n.
Recommended: "python tutorial】
The above is the detailed content of What does t mean in python. For more information, please follow other related articles on the PHP Chinese website!