sh_12_ escape character

 

sh_12_ escape character

. 1  # \ T a tab at the output console, assist in maintaining the alignment of the text in the vertical direction when the output 
2  Print ( " . 1 \ T2 \ T3 " )
 . 3  Print ( " 10 \ T20 \ T30 " )
 . 4  
. 5  # \ n-in console output a newline 
. 6  Print ( " Hello \ n-Python " )
 . 7  
. 8  # \ "can console output" 
. 9  Print ( " Hello \" Hello " )

 

Guess you like

Origin www.cnblogs.com/shaohan/p/11496518.html