1
: : : 2016-01-01
text , \n \n :
text='This is my first test. This is the second line. This the third '
print(text) #
"""
This is my first test. This is the second line. This the third
"""
text='This is my first test.\nThis is the second line.\nThis the third line'
print(text) # \nc++
"""
This is my first test.
This is the second line.
This the third line
"""
open
open , open 'my file.txt', , w . 'my file.txt' , w , my file.txt
my_file=open('my file.txt','w') #: open('',''), 'w':write;'r':read.
my_file.write(text) # text
my_file.close() #
tab
\t tab :
text='\tThis is my first test.\n\tThis is the second line.\n\tThis is the third line'
print(text) # \t
"""
This is my first test.
This is the second line.
This is the third line
"""
[ 1]