The tuple object (pronounced “toople” or “tuhple,” depending on who you ask) is roughly like a list that cannot be changed—tuples are sequences, like lists, but they are immutable, like strings. Syntactically, they are coded in parentheses instead of square brackets, and they support arbitrary types, nesting, and the usual sequence operations: >>> T = (1, 2, 3, 4) # A 4-item tuple >> T + (5, 6) # Concatenation >>> T[0] # Indexing, slicing, and more The only real distinction for tuples is that they cannot be changed once created. That is, they are immutable sequences: >>> T[0] = 2 # Tuples are immutable Why Tuples? So, why have a type that is like a list, but supports fewer operations? Frankly, tuples are not generally used as often as lists in practice, but their immutability is the whole point. If you pass a collection of objects around your program as a list, it can be changed anywhere; if you use a tuple, it cannot. That is, tuples provide a sort of integrity constraint that is convenient in programs larger than those we can write here. We’ll talk more about tuples later in the book. For now, though, let’s jump ahead to our last major core type, the file. Files File objects are Python code’s main interface to external files on your computer. They are a core type, but they’re something of an oddball—there is no specific literal syntax for creating them. Rather, to create a file object, you call the built-in open function, passing in an external filename as a string, and a processing mode string. For example, to create an output file, you would pass in its name and the 'w' processing mode string to write data: >>> f = open('data.txt', This creates a file in the current directory, and writes text to it (the filename can be a full directory path if you need to access a file elsewhere on your computer). To read back what you just wrote, reopen the file in 'r' processing mode, for reading input (this is the default if you omit the mode in the call). Then read the file’s content into a string of bytes, and display it. A file’s contents are always a string of bytes to your script, regardless of the type of data the file contains: >>> f = open('data.txt') # 'r' is the default processing mode >>> print bytes # Print interprets control characters >>> bytes.split() # File content is always a string Other file object methods support additional features we don’t have time to cover here. For instance, file objects provide more ways of reading and writing (readaccepts an optional byte size,readlinereads one line at a time, and so on), as well as other tools (seek moves to a new file position). We’ll meet the full set of file methods later in this book, but if you want a quick preview now, run adircall on the wordfile(the name of the file data type), and ahelpon any of the names that come back: >>> dir(file) >>> help(file.seek) Other File-Like Tools The open function is the workhorse for most file processing you will do in Python. For more advanced tasks, though, Python comes with additional file-like tools: pipes, fifos, sockets, keyed-access files, object persistence, descriptor-based files, relational and object-oriented database interfaces, and more. Descriptor files, for instance, support file locking and other low-level tools, and sockets provide an interface for networking and interprocess communication. We won’t cover many of these topics in this book, but you’ll find them useful once you start programming Python in earnest.
blog comments powered by Disqus |
|
|
|
|
|
|
|