Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python read entire file as string

# Open a file: file
file = open('my_text_file',mode='r')
 
# read all lines at once
all_of_it = file.read()
 
# close the file
file.close()
Source by cmdlinetips.com #
 
PREVIOUS NEXT
Tagged: #python #read #entire #file #string
ADD COMMENT
Topic
Name
2+3 =