Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | .. _tut-io: |
| 2 | |
| 3 | **************** |
| 4 | Input and Output |
| 5 | **************** |
| 6 | |
| 7 | There are several ways to present the output of a program; data can be printed |
| 8 | in a human-readable form, or written to a file for future use. This chapter will |
| 9 | discuss some of the possibilities. |
| 10 | |
| 11 | |
| 12 | .. _tut-formatting: |
| 13 | |
| 14 | Fancier Output Formatting |
| 15 | ========================= |
| 16 | |
| 17 | So far we've encountered two ways of writing values: *expression statements* and |
| 18 | the :keyword:`print` statement. (A third way is using the :meth:`write` method |
| 19 | of file objects; the standard output file can be referenced as ``sys.stdout``. |
| 20 | See the Library Reference for more information on this.) |
| 21 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 22 | Often you'll want more control over the formatting of your output than simply |
| 23 | printing space-separated values. There are two ways to format your output; the |
| 24 | first way is to do all the string handling yourself; using string slicing and |
| 25 | concatenation operations you can create any layout you can imagine. The |
Georg Brandl | cdbc696 | 2011-03-06 10:56:18 +0100 | [diff] [blame] | 26 | string types have some methods that perform useful operations for padding |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 27 | strings to a given column width; these will be discussed shortly. The second |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 28 | way is to use the :meth:`str.format` method. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 29 | |
Georg Brandl | cdbc696 | 2011-03-06 10:56:18 +0100 | [diff] [blame] | 30 | The :mod:`string` module contains a :class:`~string.Template` class which offers |
| 31 | yet another way to substitute values into strings. |
| 32 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 33 | One question remains, of course: how do you convert values to strings? Luckily, |
| 34 | Python has ways to convert any value to a string: pass it to the :func:`repr` |
Georg Brandl | b04d485 | 2008-08-08 15:34:34 +0000 | [diff] [blame] | 35 | or :func:`str` functions. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 36 | |
| 37 | The :func:`str` function is meant to return representations of values which are |
| 38 | fairly human-readable, while :func:`repr` is meant to generate representations |
| 39 | which can be read by the interpreter (or will force a :exc:`SyntaxError` if |
| 40 | there is not equivalent syntax). For objects which don't have a particular |
| 41 | representation for human consumption, :func:`str` will return the same value as |
| 42 | :func:`repr`. Many values, such as numbers or structures like lists and |
| 43 | dictionaries, have the same representation using either function. Strings and |
| 44 | floating point numbers, in particular, have two distinct representations. |
| 45 | |
| 46 | Some examples:: |
| 47 | |
| 48 | >>> s = 'Hello, world.' |
| 49 | >>> str(s) |
| 50 | 'Hello, world.' |
| 51 | >>> repr(s) |
| 52 | "'Hello, world.'" |
Mark Dickinson | 6b87f11 | 2009-11-24 14:27:02 +0000 | [diff] [blame] | 53 | >>> str(1.0/7.0) |
| 54 | '0.142857142857' |
| 55 | >>> repr(1.0/7.0) |
| 56 | '0.14285714285714285' |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 57 | >>> 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 Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 70 | |
| 71 | Here 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 Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 90 | ... print '{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x) |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 91 | ... |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 92 | 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 |
| 104 | way :keyword:`print` works: it always adds spaces between its arguments.) |
| 105 | |
Ezio Melotti | dd6833d | 2011-03-13 02:13:08 +0200 | [diff] [blame] | 106 | This example demonstrates the :meth:`str.rjust` method of string |
| 107 | objects, which right-justifies a string in a field of a given width by padding |
| 108 | it 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 |
| 110 | new string. If the input string is too long, they don't truncate it, but |
| 111 | return it unchanged; this will mess up your column lay-out but that's usually |
| 112 | better than the alternative, which would be lying about a value. (If you |
| 113 | really want truncation you can always add a slice operation, as in |
| 114 | ``x.ljust(n)[:n]``.) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 115 | |
Ezio Melotti | dd6833d | 2011-03-13 02:13:08 +0200 | [diff] [blame] | 116 | There is another method, :meth:`str.zfill`, which pads a numeric string on the |
| 117 | left with zeros. It understands about plus and minus signs:: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 118 | |
| 119 | >>> '12'.zfill(5) |
| 120 | '00012' |
| 121 | >>> '-3.14'.zfill(7) |
| 122 | '-003.14' |
| 123 | >>> '3.14159265359'.zfill(5) |
| 124 | '3.14159265359' |
| 125 | |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 126 | Basic usage of the :meth:`str.format` method looks like this:: |
| 127 | |
Georg Brandl | 254c17c | 2009-09-01 07:40:54 +0000 | [diff] [blame] | 128 | >>> print 'We are the {} who say "{}!"'.format('knights', 'Ni') |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 129 | We are the knights who say "Ni!" |
| 130 | |
| 131 | The brackets and characters within them (called format fields) are replaced with |
Ezio Melotti | dd6833d | 2011-03-13 02:13:08 +0200 | [diff] [blame] | 132 | the objects passed into the :meth:`str.format` method. A number in the |
Georg Brandl | 14bb28a | 2009-07-29 17:15:20 +0000 | [diff] [blame] | 133 | brackets refers to the position of the object passed into the |
Ezio Melotti | dd6833d | 2011-03-13 02:13:08 +0200 | [diff] [blame] | 134 | :meth:`str.format` method. :: |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 135 | |
| 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 Melotti | dd6833d | 2011-03-13 02:13:08 +0200 | [diff] [blame] | 141 | If keyword arguments are used in the :meth:`str.format` method, their values |
Georg Brandl | 14bb28a | 2009-07-29 17:15:20 +0000 | [diff] [blame] | 142 | are referred to by using the name of the argument. :: |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 143 | |
Georg Brandl | 4b99e9b | 2008-07-26 22:13:29 +0000 | [diff] [blame] | 144 | >>> print 'This {food} is {adjective}.'.format( |
| 145 | ... food='spam', adjective='absolutely horrible') |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 146 | This spam is absolutely horrible. |
| 147 | |
| 148 | Positional and keyword arguments can be arbitrarily combined:: |
| 149 | |
Georg Brandl | 4b99e9b | 2008-07-26 22:13:29 +0000 | [diff] [blame] | 150 | >>> print 'The story of {0}, {1}, and {other}.'.format('Bill', 'Manfred', |
| 151 | ... other='Georg') |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 152 | The story of Bill, Manfred, and Georg. |
| 153 | |
Georg Brandl | 254c17c | 2009-09-01 07:40:54 +0000 | [diff] [blame] | 154 | ``'!s'`` (apply :func:`str`) and ``'!r'`` (apply :func:`repr`) can be used to |
| 155 | convert 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 Brandl | a1a4bdb | 2009-07-18 09:06:31 +0000 | [diff] [blame] | 163 | An optional ``':'`` and format specifier can follow the field name. This allows |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 164 | greater control over how the value is formatted. The following example |
Raymond Hettinger | 2bd4795 | 2011-02-24 00:00:30 +0000 | [diff] [blame] | 165 | rounds Pi to three places after the decimal. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 166 | |
| 167 | >>> import math |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 168 | >>> print 'The value of PI is approximately {0:.3f}.'.format(math.pi) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 169 | The value of PI is approximately 3.142. |
| 170 | |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 171 | Passing an integer after the ``':'`` will cause that field to be a minimum |
Georg Brandl | 14bb28a | 2009-07-29 17:15:20 +0000 | [diff] [blame] | 172 | number of characters wide. This is useful for making tables pretty. :: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 173 | |
| 174 | >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 7678} |
| 175 | >>> for name, phone in table.items(): |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 176 | ... print '{0:10} ==> {1:10d}'.format(name, phone) |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 177 | ... |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 178 | Jack ==> 4098 |
| 179 | Dcab ==> 7678 |
| 180 | Sjoerd ==> 4127 |
| 181 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 182 | If you have a really long format string that you don't want to split up, it |
| 183 | would be nice if you could reference the variables to be formatted by name |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 184 | instead of by position. This can be done by simply passing the dict and using |
| 185 | square brackets ``'[]'`` to access the keys :: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 186 | |
| 187 | >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678} |
Georg Brandl | 4b99e9b | 2008-07-26 22:13:29 +0000 | [diff] [blame] | 188 | >>> print ('Jack: {0[Jack]:d}; Sjoerd: {0[Sjoerd]:d}; ' |
| 189 | ... 'Dcab: {0[Dcab]:d}'.format(table)) |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 190 | Jack: 4098; Sjoerd: 4127; Dcab: 8637678 |
| 191 | |
| 192 | This could also be done by passing the table as keyword arguments with the '**' |
Georg Brandl | 14bb28a | 2009-07-29 17:15:20 +0000 | [diff] [blame] | 193 | notation. :: |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 194 | |
| 195 | >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678} |
| 196 | >>> print 'Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 197 | Jack: 4098; Sjoerd: 4127; Dcab: 8637678 |
| 198 | |
Ezio Melotti | dd6833d | 2011-03-13 02:13:08 +0200 | [diff] [blame] | 199 | This is particularly useful in combination with the built-in function |
| 200 | :func:`vars`, which returns a dictionary containing all local variables. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 201 | |
Mark Dickinson | 3e4caeb | 2009-02-21 20:27:01 +0000 | [diff] [blame] | 202 | For a complete overview of string formatting with :meth:`str.format`, see |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 203 | :ref:`formatstrings`. |
| 204 | |
| 205 | |
| 206 | Old string formatting |
| 207 | --------------------- |
| 208 | |
| 209 | The ``%`` operator can also be used for string formatting. It interprets the |
| 210 | left argument much like a :cfunc:`sprintf`\ -style format string to be applied |
| 211 | to the right argument, and returns the string resulting from this formatting |
| 212 | operation. 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 | |
| 218 | Since :meth:`str.format` is quite new, a lot of Python code still uses the ``%`` |
Georg Brandl | a1a4bdb | 2009-07-18 09:06:31 +0000 | [diff] [blame] | 219 | operator. However, because this old style of formatting will eventually be |
| 220 | removed from the language, :meth:`str.format` should generally be used. |
Benjamin Peterson | f9ef988 | 2008-05-26 00:54:22 +0000 | [diff] [blame] | 221 | |
| 222 | More information can be found in the :ref:`string-formatting` section. |
| 223 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 224 | |
| 225 | .. _tut-files: |
| 226 | |
| 227 | Reading 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 |
| 235 | arguments: ``open(filename, mode)``. |
| 236 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 237 | :: |
| 238 | |
Georg Brandl | b19be57 | 2007-12-29 10:57:00 +0000 | [diff] [blame] | 239 | >>> f = open('/tmp/workfile', 'w') |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 240 | >>> print f |
| 241 | <open file '/tmp/workfile', mode 'w' at 80a0960> |
| 242 | |
| 243 | The first argument is a string containing the filename. The second argument is |
| 244 | another string containing a few characters describing the way in which the file |
| 245 | will be used. *mode* can be ``'r'`` when the file will only be read, ``'w'`` |
| 246 | for 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 |
| 248 | automatically added to the end. ``'r+'`` opens the file for both reading and |
| 249 | writing. The *mode* argument is optional; ``'r'`` will be assumed if it's |
| 250 | omitted. |
| 251 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 252 | On Windows, ``'b'`` appended to the mode opens the file in binary mode, so there |
Michael Foord | 60931a5 | 2009-09-13 16:13:36 +0000 | [diff] [blame] | 253 | are also modes like ``'rb'``, ``'wb'``, and ``'r+b'``. Python on Windows makes |
| 254 | a distinction between text and binary files; the end-of-line characters in text |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 255 | files are automatically altered slightly when data is read or written. This |
| 256 | behind-the-scenes modification to file data is fine for ASCII text files, but |
| 257 | it'll corrupt binary data like that in :file:`JPEG` or :file:`EXE` files. Be |
| 258 | very careful to use binary mode when reading and writing such files. On Unix, |
| 259 | it doesn't hurt to append a ``'b'`` to the mode, so you can use it |
| 260 | platform-independently for all binary files. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 261 | |
| 262 | |
| 263 | .. _tut-filemethods: |
| 264 | |
| 265 | Methods of File Objects |
| 266 | ----------------------- |
| 267 | |
| 268 | The rest of the examples in this section will assume that a file object called |
| 269 | ``f`` has already been created. |
| 270 | |
| 271 | To read a file's contents, call ``f.read(size)``, which reads some quantity of |
| 272 | data 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 |
| 274 | returned; it's your problem if the file is twice as large as your machine's |
| 275 | memory. Otherwise, at most *size* bytes are read and returned. If the end of |
| 276 | the 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``) |
| 285 | is left at the end of the string, and is only omitted on the last line of the |
| 286 | file if the file doesn't end in a newline. This makes the return value |
| 287 | unambiguous; if ``f.readline()`` returns an empty string, the end of the file |
| 288 | has been reached, while a blank line is represented by ``'\n'``, a string |
| 289 | containing 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. |
| 299 | If given an optional parameter *sizehint*, it reads that many bytes from the |
| 300 | file and enough more to complete a line, and returns the lines from that. This |
| 301 | is often used to allow efficient reading of a large file by lines, but without |
| 302 | having 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 Brandl | 5d242ee | 2007-09-20 08:44:59 +0000 | [diff] [blame] | 308 | An alternative approach to reading lines is to loop over the file object. This is |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 309 | memory 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 | |
| 317 | The alternative approach is simpler but does not provide as fine-grained |
| 318 | control. Since the two approaches manage line buffering differently, they |
| 319 | should 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 | |
| 326 | To write something other than a string, it needs to be converted to a string |
| 327 | first:: |
| 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 |
| 334 | file, measured in bytes from the beginning of the file. To change the file |
| 335 | object's position, use ``f.seek(offset, from_what)``. The position is computed |
| 336 | from adding *offset* to a reference point; the reference point is selected by |
| 337 | the *from_what* argument. A *from_what* value of 0 measures from the beginning |
| 338 | of the file, 1 uses the current file position, and 2 uses the end of the file as |
| 339 | the reference point. *from_what* can be omitted and defaults to 0, using the |
| 340 | beginning 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 Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 345 | >>> f.read(1) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 346 | '5' |
| 347 | >>> f.seek(-3, 2) # Go to the 3rd byte before the end |
| 348 | >>> f.read(1) |
| 349 | 'd' |
| 350 | |
| 351 | When you're done with a file, call ``f.close()`` to close it and free up any |
| 352 | system resources taken up by the open file. After calling ``f.close()``, |
| 353 | attempts 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 Brandl | a66bb0a | 2008-07-16 23:35:54 +0000 | [diff] [blame] | 361 | It is good practice to use the :keyword:`with` keyword when dealing with file |
| 362 | objects. This has the advantage that the file is properly closed after its |
| 363 | suite finishes, even if an exception is raised on the way. It is also much |
| 364 | shorter 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 Brandl | 14bb28a | 2009-07-29 17:15:20 +0000 | [diff] [blame] | 371 | File objects have some additional methods, such as :meth:`~file.isatty` and |
| 372 | :meth:`~file.truncate` which are less frequently used; consult the Library |
| 373 | Reference for a complete guide to file objects. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 374 | |
| 375 | |
| 376 | .. _tut-pickle: |
| 377 | |
| 378 | The :mod:`pickle` Module |
| 379 | ------------------------ |
| 380 | |
| 381 | .. index:: module: pickle |
| 382 | |
| 383 | Strings can easily be written to and read from a file. Numbers take a bit more |
| 384 | effort, since the :meth:`read` method only returns strings, which will have to |
| 385 | be passed to a function like :func:`int`, which takes a string like ``'123'`` |
| 386 | and returns its numeric value 123. However, when you want to save more complex |
| 387 | data types like lists, dictionaries, or class instances, things get a lot more |
| 388 | complicated. |
| 389 | |
| 390 | Rather than have users be constantly writing and debugging code to save |
| 391 | complicated data types, Python provides a standard module called :mod:`pickle`. |
| 392 | This is an amazing module that can take almost any Python object (even some |
| 393 | forms of Python code!), and convert it to a string representation; this process |
| 394 | is called :dfn:`pickling`. Reconstructing the object from the string |
| 395 | representation is called :dfn:`unpickling`. Between pickling and unpickling, |
| 396 | the string representing the object may have been stored in a file or data, or |
| 397 | sent over a network connection to some distant machine. |
| 398 | |
| 399 | If you have an object ``x``, and a file object ``f`` that's been opened for |
| 400 | writing, the simplest way to pickle the object takes only one line of code:: |
| 401 | |
| 402 | pickle.dump(x, f) |
| 403 | |
| 404 | To unpickle the object again, if ``f`` is a file object which has been opened |
| 405 | for reading:: |
| 406 | |
| 407 | x = pickle.load(f) |
| 408 | |
| 409 | (There are other variants of this, used when pickling many objects or when you |
| 410 | don't want to write the pickled data to a file; consult the complete |
| 411 | documentation 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 |
| 414 | reused by other programs or by a future invocation of the same program; the |
| 415 | technical term for this is a :dfn:`persistent` object. Because :mod:`pickle` is |
| 416 | so widely used, many authors who write Python extensions take care to ensure |
| 417 | that new data types such as matrices can be properly pickled and unpickled. |
| 418 | |
| 419 | |