Monday, September 03, 2018

Python3 File Open() and Print() Tips

Sample File Content

$ cat xmen_base.txt
Storm
Wolverine
test

#type and boolean attr of  file

>>> xmen_file = open('xmen_base.txt','r')
>>> xmen_file
<_io.TextIOWrapper name='xmen_base.txt' mode='r' encoding='cp1252'>
>>> type(xmen_file)
<class '_io.TextIOWrapper'>
>>> bool(xmen_file)
True

#print() add a newline at each end

>>> for a in xmen_file:
...     print(a)
...
Storm

Wolverine

test

>>> xmen_file.seek(0)
0

#tell print() not to add newline at each end

>>> for a in xmen_file:
...     print(a,end='')
...
Storm
Wolverine
test

#tell print() to add ; at end of each end

>>> xmen_file.seek(0)
0
>>> for a in xmen_file:
...     print(a.strip() + ';')
...
Storm;
Wolverine;
test;
>>> xmen_file.close()

Python open file mode detailed explaination .Quote from link

The argument mode points to a string beginning with one of the following
 sequences (Additional characters may follow these sequences.):

 ``r''   Open text file for reading.  The stream is positioned at the
         beginning of the file.

 ``r+''  Open for reading and writing.  The stream is positioned at the
         beginning of the file.

 ``w''   Truncate file to zero length or create text file for writing.
         The stream is positioned at the beginning of the file.

 ``w+''  Open for reading and writing.  The file is created if it does not
         exist, otherwise it is truncated.  The stream is positioned at
         the beginning of the file.

 ``a''   Open for writing.  The file is created if it does not exist.  The
         stream is positioned at the end of the file.  Subsequent writes
         to the file will always end up at the then current end of file,
         irrespective of any intervening fseek(3) or similar.

 ``a+''  Open for reading and writing.  The file is created if it does not
         exist.  The stream is positioned at the end of the file.  Subse-
         quent writes to the file will always end up at the then current
         end of file, irrespective of any intervening fseek(3) or similar.

No comments: