python \r \n \t code example
Example 1: \n python
print('hi\npeople')
# prints hi people, with a line separating the two words
Example 2: \r\n python
print "\n",
print "\r",
print "\r\n",
print('hi\npeople')
# prints hi people, with a line separating the two words
print "\n",
print "\r",
print "\r\n",