blob: 3441f54211bfd166cc2b7c0f94066cfe3a4d0aa2 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001.. _tut-io:
2
3****************
4Input and Output
5****************
6
7There are several ways to present the output of a program; data can be printed
8in a human-readable form, or written to a file for future use. This chapter will
9discuss some of the possibilities.
10
11
12.. _tut-formatting:
13
14Fancier Output Formatting
15=========================
16
17So far we've encountered two ways of writing values: *expression statements* and
18the :keyword:`print` statement. (A third way is using the :meth:`write` method
19of file objects; the standard output file can be referenced as ``sys.stdout``.
20See the Library Reference for more information on this.)
21
Georg Brandl8ec7f652007-08-15 14:28:01 +000022Often you'll want more control over the formatting of your output than simply
23printing space-separated values. There are two ways to format your output; the
24first way is to do all the string handling yourself; using string slicing and
25concatenation operations you can create any layout you can imagine. The
Georg Brandlcdbc6962011-03-06 10:56:18 +010026string types have some methods that perform useful operations for padding
Georg Brandl8ec7f652007-08-15 14:28:01 +000027strings to a given column width; these will be discussed shortly. The second
Benjamin Petersonf9ef9882008-05-26 00:54:22 +000028way is to use the :meth:`str.format` method.
Georg Brandl8ec7f652007-08-15 14:28:01 +000029
Georg Brandlcdbc6962011-03-06 10:56:18 +010030The :mod:`string` module contains a :class:`~string.Template` class which offers
31yet another way to substitute values into strings.
32
Georg Brandl8ec7f652007-08-15 14:28:01 +000033One question remains, of course: how do you convert values to strings? Luckily,
34Python has ways to convert any value to a string: pass it to the :func:`repr`
Georg Brandlb04d4852008-08-08 15:34:34 +000035or :func:`str` functions.
Georg Brandl8ec7f652007-08-15 14:28:01 +000036
37The :func:`str` function is meant to return representations of values which are
38fairly human-readable, while :func:`repr` is meant to generate representations
39which can be read by the interpreter (or will force a :exc:`SyntaxError` if
40there is not equivalent syntax). For objects which don't have a particular
41representation for human consumption, :func:`str` will return the same value as
42:func:`repr`. Many values, such as numbers or structures like lists and
43dictionaries, have the same representation using either function. Strings and
44floating point numbers, in particular, have two distinct representations.
45
46Some examples::
47
48 >>> s = 'Hello, world.'
49 >>> str(s)
50 'Hello, world.'
51 >>> repr(s)
52 "'Hello, world.'"
Mark Dickinson6b87f112009-11-24 14:27:02 +000053 >>> str(1.0/7.0)
54 '0.142857142857'
55 >>> repr(1.0/7.0)
56 '0.14285714285714285'
Georg Brandl8ec7f652007-08-15 14:28:01 +000057 >>> x = 10 * 3.25
58 >>> y = 200 * 200
59 >>> s = 'The value of x is ' + repr(x) + ', and y is ' + repr(y) + '...'
60 >>> print s
61 The value of x is 32.5, and y is 40000...
62 >>> # The repr() of a string adds string quotes and backslashes:
63 ... hello = 'hello, world\n'
64 >>> hellos = repr(hello)
65 >>> print hellos
66 'hello, world\n'
67 >>> # The argument to repr() may be any Python object:
68 ... repr((x, y, ('spam', 'eggs')))
69 "(32.5, 40000, ('spam', 'eggs'))"
Georg Brandl8ec7f652007-08-15 14:28:01 +000070
71Here are two ways to write a table of squares and cubes::
72
73 >>> for x in range(1, 11):
74 ... print repr(x).rjust(2), repr(x*x).rjust(3),
75 ... # Note trailing comma on previous line
76 ... print repr(x*x*x).rjust(4)
77 ...
78 1 1 1
79 2 4 8
80 3 9 27
81 4 16 64
82 5 25 125
83 6 36 216
84 7 49 343
85 8 64 512
86 9 81 729
87 10 100 1000
88
89 >>> for x in range(1,11):
Benjamin Petersonf9ef9882008-05-26 00:54:22 +000090 ... print '{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x)
Georg Brandlc62ef8b2009-01-03 20:55:06 +000091 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +000092 1 1 1
93 2 4 8
94 3 9 27
95 4 16 64
96 5 25 125
97 6 36 216
98 7 49 343
99 8 64 512
100 9 81 729
101 10 100 1000
102
103(Note that in the first example, one space between each column was added by the
104way :keyword:`print` works: it always adds spaces between its arguments.)
105
Ezio Melottidd6833d2011-03-13 02:13:08 +0200106This example demonstrates the :meth:`str.rjust` method of string
107objects, which right-justifies a string in a field of a given width by padding
108it with spaces on the left. There are similar methods :meth:`str.ljust` and
109:meth:`str.center`. These methods do not write anything, they just return a
110new string. If the input string is too long, they don't truncate it, but
111return it unchanged; this will mess up your column lay-out but that's usually
112better than the alternative, which would be lying about a value. (If you
113really want truncation you can always add a slice operation, as in
114``x.ljust(n)[:n]``.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000115
Ezio Melottidd6833d2011-03-13 02:13:08 +0200116There is another method, :meth:`str.zfill`, which pads a numeric string on the
117left with zeros. It understands about plus and minus signs::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000118
119 >>> '12'.zfill(5)
120 '00012'
121 >>> '-3.14'.zfill(7)
122 '-003.14'
123 >>> '3.14159265359'.zfill(5)
124 '3.14159265359'
125
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000126Basic usage of the :meth:`str.format` method looks like this::
127
Georg Brandl254c17c2009-09-01 07:40:54 +0000128 >>> print 'We are the {} who say "{}!"'.format('knights', 'Ni')
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000129 We are the knights who say "Ni!"
130
131The brackets and characters within them (called format fields) are replaced with
Ezio Melottidd6833d2011-03-13 02:13:08 +0200132the objects passed into the :meth:`str.format` method. A number in the
Georg Brandl14bb28a2009-07-29 17:15:20 +0000133brackets refers to the position of the object passed into the
Ezio Melottidd6833d2011-03-13 02:13:08 +0200134:meth:`str.format` method. ::
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000135
136 >>> print '{0} and {1}'.format('spam', 'eggs')
137 spam and eggs
138 >>> print '{1} and {0}'.format('spam', 'eggs')
139 eggs and spam
140
Ezio Melottidd6833d2011-03-13 02:13:08 +0200141If keyword arguments are used in the :meth:`str.format` method, their values
Georg Brandl14bb28a2009-07-29 17:15:20 +0000142are referred to by using the name of the argument. ::
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000143
Georg Brandl4b99e9b2008-07-26 22:13:29 +0000144 >>> print 'This {food} is {adjective}.'.format(
145 ... food='spam', adjective='absolutely horrible')
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000146 This spam is absolutely horrible.
147
148Positional and keyword arguments can be arbitrarily combined::
149
Georg Brandl4b99e9b2008-07-26 22:13:29 +0000150 >>> print 'The story of {0}, {1}, and {other}.'.format('Bill', 'Manfred',
151 ... other='Georg')
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000152 The story of Bill, Manfred, and Georg.
153
Georg Brandl254c17c2009-09-01 07:40:54 +0000154``'!s'`` (apply :func:`str`) and ``'!r'`` (apply :func:`repr`) can be used to
155convert the value before it is formatted. ::
156
157 >>> import math
158 >>> print 'The value of PI is approximately {}.'.format(math.pi)
159 The value of PI is approximately 3.14159265359.
160 >>> print 'The value of PI is approximately {!r}.'.format(math.pi)
161 The value of PI is approximately 3.141592653589793.
162
Georg Brandla1a4bdb2009-07-18 09:06:31 +0000163An optional ``':'`` and format specifier can follow the field name. This allows
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000164greater control over how the value is formatted. The following example
Raymond Hettinger2bd47952011-02-24 00:00:30 +0000165rounds Pi to three places after the decimal.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000166
167 >>> import math
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000168 >>> print 'The value of PI is approximately {0:.3f}.'.format(math.pi)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000169 The value of PI is approximately 3.142.
170
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000171Passing an integer after the ``':'`` will cause that field to be a minimum
Georg Brandl14bb28a2009-07-29 17:15:20 +0000172number of characters wide. This is useful for making tables pretty. ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000173
174 >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 7678}
175 >>> for name, phone in table.items():
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000176 ... print '{0:10} ==> {1:10d}'.format(name, phone)
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000177 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +0000178 Jack ==> 4098
179 Dcab ==> 7678
180 Sjoerd ==> 4127
181
Georg Brandl8ec7f652007-08-15 14:28:01 +0000182If you have a really long format string that you don't want to split up, it
183would be nice if you could reference the variables to be formatted by name
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000184instead of by position. This can be done by simply passing the dict and using
185square brackets ``'[]'`` to access the keys ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000186
187 >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}
Georg Brandl4b99e9b2008-07-26 22:13:29 +0000188 >>> print ('Jack: {0[Jack]:d}; Sjoerd: {0[Sjoerd]:d}; '
189 ... 'Dcab: {0[Dcab]:d}'.format(table))
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000190 Jack: 4098; Sjoerd: 4127; Dcab: 8637678
191
192This could also be done by passing the table as keyword arguments with the '**'
Georg Brandl14bb28a2009-07-29 17:15:20 +0000193notation. ::
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000194
195 >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}
196 >>> print 'Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000197 Jack: 4098; Sjoerd: 4127; Dcab: 8637678
198
Ezio Melottidd6833d2011-03-13 02:13:08 +0200199This is particularly useful in combination with the built-in function
200:func:`vars`, which returns a dictionary containing all local variables.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000201
Mark Dickinson3e4caeb2009-02-21 20:27:01 +0000202For a complete overview of string formatting with :meth:`str.format`, see
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000203:ref:`formatstrings`.
204
205
206Old string formatting
207---------------------
208
209The ``%`` operator can also be used for string formatting. It interprets the
210left argument much like a :cfunc:`sprintf`\ -style format string to be applied
211to the right argument, and returns the string resulting from this formatting
212operation. For example::
213
214 >>> import math
215 >>> print 'The value of PI is approximately %5.3f.' % math.pi
216 The value of PI is approximately 3.142.
217
218Since :meth:`str.format` is quite new, a lot of Python code still uses the ``%``
Georg Brandla1a4bdb2009-07-18 09:06:31 +0000219operator. However, because this old style of formatting will eventually be
220removed from the language, :meth:`str.format` should generally be used.
Benjamin Petersonf9ef9882008-05-26 00:54:22 +0000221
222More information can be found in the :ref:`string-formatting` section.
223
Georg Brandl8ec7f652007-08-15 14:28:01 +0000224
225.. _tut-files:
226
227Reading and Writing Files
228=========================
229
230.. index::
231 builtin: open
232 object: file
233
234:func:`open` returns a file object, and is most commonly used with two
235arguments: ``open(filename, mode)``.
236
Georg Brandl8ec7f652007-08-15 14:28:01 +0000237::
238
Georg Brandlb19be572007-12-29 10:57:00 +0000239 >>> f = open('/tmp/workfile', 'w')
Georg Brandl8ec7f652007-08-15 14:28:01 +0000240 >>> print f
241 <open file '/tmp/workfile', mode 'w' at 80a0960>
242
243The first argument is a string containing the filename. The second argument is
244another string containing a few characters describing the way in which the file
245will be used. *mode* can be ``'r'`` when the file will only be read, ``'w'``
246for only writing (an existing file with the same name will be erased), and
247``'a'`` opens the file for appending; any data written to the file is
248automatically added to the end. ``'r+'`` opens the file for both reading and
249writing. The *mode* argument is optional; ``'r'`` will be assumed if it's
250omitted.
251
Georg Brandl9af94982008-09-13 17:41:16 +0000252On Windows, ``'b'`` appended to the mode opens the file in binary mode, so there
Michael Foord60931a52009-09-13 16:13:36 +0000253are also modes like ``'rb'``, ``'wb'``, and ``'r+b'``. Python on Windows makes
254a distinction between text and binary files; the end-of-line characters in text
Georg Brandl9af94982008-09-13 17:41:16 +0000255files are automatically altered slightly when data is read or written. This
256behind-the-scenes modification to file data is fine for ASCII text files, but
257it'll corrupt binary data like that in :file:`JPEG` or :file:`EXE` files. Be
258very careful to use binary mode when reading and writing such files. On Unix,
259it doesn't hurt to append a ``'b'`` to the mode, so you can use it
260platform-independently for all binary files.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000261
262
263.. _tut-filemethods:
264
265Methods of File Objects
266-----------------------
267
268The rest of the examples in this section will assume that a file object called
269``f`` has already been created.
270
271To read a file's contents, call ``f.read(size)``, which reads some quantity of
272data and returns it as a string. *size* is an optional numeric argument. When
273*size* is omitted or negative, the entire contents of the file will be read and
274returned; it's your problem if the file is twice as large as your machine's
275memory. Otherwise, at most *size* bytes are read and returned. If the end of
276the file has been reached, ``f.read()`` will return an empty string (``""``).
277::
278
279 >>> f.read()
280 'This is the entire file.\n'
281 >>> f.read()
282 ''
283
284``f.readline()`` reads a single line from the file; a newline character (``\n``)
285is left at the end of the string, and is only omitted on the last line of the
286file if the file doesn't end in a newline. This makes the return value
287unambiguous; if ``f.readline()`` returns an empty string, the end of the file
288has been reached, while a blank line is represented by ``'\n'``, a string
289containing only a single newline. ::
290
291 >>> f.readline()
292 'This is the first line of the file.\n'
293 >>> f.readline()
294 'Second line of the file\n'
295 >>> f.readline()
296 ''
297
298``f.readlines()`` returns a list containing all the lines of data in the file.
299If given an optional parameter *sizehint*, it reads that many bytes from the
300file and enough more to complete a line, and returns the lines from that. This
301is often used to allow efficient reading of a large file by lines, but without
302having to load the entire file in memory. Only complete lines will be returned.
303::
304
305 >>> f.readlines()
306 ['This is the first line of the file.\n', 'Second line of the file\n']
307
Georg Brandl5d242ee2007-09-20 08:44:59 +0000308An alternative approach to reading lines is to loop over the file object. This is
Georg Brandl8ec7f652007-08-15 14:28:01 +0000309memory efficient, fast, and leads to simpler code::
310
311 >>> for line in f:
312 print line,
313
314 This is the first line of the file.
315 Second line of the file
316
317The alternative approach is simpler but does not provide as fine-grained
318control. Since the two approaches manage line buffering differently, they
319should not be mixed.
320
321``f.write(string)`` writes the contents of *string* to the file, returning
322``None``. ::
323
324 >>> f.write('This is a test\n')
325
326To write something other than a string, it needs to be converted to a string
327first::
328
329 >>> value = ('the answer', 42)
330 >>> s = str(value)
331 >>> f.write(s)
332
333``f.tell()`` returns an integer giving the file object's current position in the
334file, measured in bytes from the beginning of the file. To change the file
335object's position, use ``f.seek(offset, from_what)``. The position is computed
336from adding *offset* to a reference point; the reference point is selected by
337the *from_what* argument. A *from_what* value of 0 measures from the beginning
338of the file, 1 uses the current file position, and 2 uses the end of the file as
339the reference point. *from_what* can be omitted and defaults to 0, using the
340beginning of the file as the reference point. ::
341
342 >>> f = open('/tmp/workfile', 'r+')
343 >>> f.write('0123456789abcdef')
344 >>> f.seek(5) # Go to the 6th byte in the file
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000345 >>> f.read(1)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000346 '5'
347 >>> f.seek(-3, 2) # Go to the 3rd byte before the end
348 >>> f.read(1)
349 'd'
350
351When you're done with a file, call ``f.close()`` to close it and free up any
352system resources taken up by the open file. After calling ``f.close()``,
353attempts to use the file object will automatically fail. ::
354
355 >>> f.close()
356 >>> f.read()
357 Traceback (most recent call last):
358 File "<stdin>", line 1, in ?
359 ValueError: I/O operation on closed file
360
Georg Brandla66bb0a2008-07-16 23:35:54 +0000361It is good practice to use the :keyword:`with` keyword when dealing with file
362objects. This has the advantage that the file is properly closed after its
363suite finishes, even if an exception is raised on the way. It is also much
364shorter than writing equivalent :keyword:`try`\ -\ :keyword:`finally` blocks::
365
366 >>> with open('/tmp/workfile', 'r') as f:
367 ... read_data = f.read()
368 >>> f.closed
369 True
370
Georg Brandl14bb28a2009-07-29 17:15:20 +0000371File objects have some additional methods, such as :meth:`~file.isatty` and
372:meth:`~file.truncate` which are less frequently used; consult the Library
373Reference for a complete guide to file objects.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000374
375
376.. _tut-pickle:
377
378The :mod:`pickle` Module
379------------------------
380
381.. index:: module: pickle
382
383Strings can easily be written to and read from a file. Numbers take a bit more
384effort, since the :meth:`read` method only returns strings, which will have to
385be passed to a function like :func:`int`, which takes a string like ``'123'``
386and returns its numeric value 123. However, when you want to save more complex
387data types like lists, dictionaries, or class instances, things get a lot more
388complicated.
389
390Rather than have users be constantly writing and debugging code to save
391complicated data types, Python provides a standard module called :mod:`pickle`.
392This is an amazing module that can take almost any Python object (even some
393forms of Python code!), and convert it to a string representation; this process
394is called :dfn:`pickling`. Reconstructing the object from the string
395representation is called :dfn:`unpickling`. Between pickling and unpickling,
396the string representing the object may have been stored in a file or data, or
397sent over a network connection to some distant machine.
398
399If you have an object ``x``, and a file object ``f`` that's been opened for
400writing, the simplest way to pickle the object takes only one line of code::
401
402 pickle.dump(x, f)
403
404To unpickle the object again, if ``f`` is a file object which has been opened
405for reading::
406
407 x = pickle.load(f)
408
409(There are other variants of this, used when pickling many objects or when you
410don't want to write the pickled data to a file; consult the complete
411documentation for :mod:`pickle` in the Python Library Reference.)
412
413:mod:`pickle` is the standard way to make Python objects which can be stored and
414reused by other programs or by a future invocation of the same program; the
415technical term for this is a :dfn:`persistent` object. Because :mod:`pickle` is
416so widely used, many authors who write Python extensions take care to ensure
417that new data types such as matrices can be properly pickled and unpickled.
418
419