#Escape squence coding
Print("Line A \n Line B") #\n is used for new line
Print("Line A\t LineB") #\t is used for tab space
Print("LineAA\b Line B") #\b is used for back space
#Escape squence coding
Print("Line A \n Line B") #\n is used for new line
Print("Line A\t LineB") #\t is used for tab space
Print("LineAA\b Line B") #\b is used for back space