5. 内置类型

以下章节描述解释器内置的标准类型。

注意

Historically (until release 2.2), Python’s built-in types have differed from user-defined types because it was not possible to use the built-in types as the basis for object-oriented inheritance. This limitation no longer exists.

The principal built-in types are numerics, sequences, mappings, files, classes, instances and exceptions.

某些操作支持几种对象类型;尤其,实际上所有对象都可以被比较、测试真值及转换为字符串 (采用 repr() 函数或稍微不同的 str() 函数)。隐式使用后一函数当对象写入通过 print() 函数。

5.1. 真值测试

可以测试任何对象的真值,对于用于 if or while condition or as operand of the Boolean operations below. The following values are considered false:

  • None

  • False

  • 任何数值类型的零,例如, 0 , 0L , 0.0 , 0j .

  • 任何空序列,例如, '' , () , [] .

  • 任何空映射,例如, {} .

  • 用户定义类的实例,若类定义 __nonzero__() or __len__() 方法,当该方法返回整数 0 或 bool False . 1

所有其它值被认为是 True — 因此,许多类型的对象始终为 True。

拥有 Boolean (布尔) 结果的运算和内置函数始终返回 0 or False 对于 false 和 1 or True 对于 true,除非另有说明 (重要例外:布尔运算 or and and 始终返回它们的操作数之一)。

5.2. 布尔运算 — and , or , not

这些是布尔运算,按优先级升序排序:

操作

结果

注意事项

x or y

if x 为 False,那么 y ,否则 x

(1)

x and y

if x 为 False,那么 x ,否则 y

(2)

not x

if x 为 False,那么 True ,否则 False

(3)

注意事项:

  1. 这是短路运算符,所以它只评估第 2 自变量,若第 1 自变量为 False。

  2. 这是短路运算符,所以它只评估第 2 自变量,若第 1 自变量为 True。

  3. not 拥有比非布尔运算符更低的优先级,所以 not a == b 被解释成 not (a == b) ,和 a == not b 是句法错误。

5.3. 比较

Comparison operations are supported by all objects. They all have the same priority (which is higher than that of the Boolean operations). Comparisons can be chained arbitrarily; for example, x < y <= z 相当于 x < y and y <= z ,除了 y 只评估 1 次 (但在 2 种情况下, z 根本不评估当 x < y 被发现为 False)。

此表汇总了比较操作:

操作

含义

注意事项

<

严格小于

<=

小于等于

>

严格大于

>=

大于等于

==

equal

!=

不等于 (1)

is

对象身份

is not

否定对象身份

注意事项:

  1. != can also be written <> , but this is an obsolete usage kept for backwards compatibility only. New code should always use != .

Objects of different types, except different numeric types and different string types, never compare equal; such objects are ordered consistently but arbitrarily (so that sorting a heterogeneous array yields a consistent result). Furthermore, some types (for example, file objects) support only a degenerate notion of comparison where any two objects of that type are unequal. Again, such objects are ordered arbitrarily but consistently. The < , <= , > and >= 操作符会引发 TypeError exception when any operand is a complex number.

Non-identical instances of a class normally compare as non-equal unless the class defines the __eq__() method or the __cmp__() 方法。

Instances of a class cannot be ordered with respect to other instances of the same class, or other types of object, unless the class defines either enough of the rich comparison methods ( __lt__() , __le__() , __gt__() ,和 __ge__() ) or the __cmp__() 方法。

CPython 实现细节: Objects of different types except numbers are ordered by their type names; objects of the same types that don’t support proper comparison are ordered by their address.

另外,具有相同句法优先级的 2 操作 in and not in , are supported only by sequence types (below).

5.4. 数值类型 — int , float , long , complex

There are four distinct numeric types: plain integers , long integers , 浮点数 ,和 复数 . In addition, Booleans are a subtype of plain integers. Plain integers (also just called integers ) are implemented using long in C, which gives them at least 32 bits of precision ( sys.maxint is always set to the maximum plain integer value for the current platform, the minimum value is -sys.maxint - 1 ). Long integers have unlimited precision. Floating point numbers are usually implemented using double in C; information about the precision and internal representation of floating point numbers for the machine on which your program is running is available in sys.float_info . Complex numbers have a real and imaginary part, which are each a floating point number. To extract these parts from a complex number z ,使用 z.real and z.imag (标准库包括额外数值类型 fractions 保持有理数,和 decimal that hold floating-point numbers with user-definable precision.)

Numbers are created by numeric literals or as the result of built-in functions and operators. Unadorned integer literals (including binary, hex, and octal numbers) yield plain integers unless the value they denote is too large to be represented as a plain integer, in which case they yield a long integer. Integer literals with an 'L' or 'l' suffix yield long integers ( 'L' is preferred because 1l looks too much like eleven!). Numeric literals containing a decimal point or an exponent sign yield floating point numbers. Appending 'j' or 'J' to a numeric literal yields an imaginary number (a complex number with a zero real part) which you can add to an integer or float to get a complex number with real and imaginary parts.

Python fully supports mixed arithmetic: when a binary arithmetic operator has operands of different numeric types, the operand with the “narrower” type is widened to that of the other, where plain integer is narrower than long integer is narrower than floating point is narrower than complex. Comparisons between numbers of mixed type use the same rule. 2 构造函数 int() , long() , float() ,和 complex() 可用于产生特定类型的数字。

All built-in numeric types support the following operations. See 幂运算符 and later sections for the operators’ priorities.

操作

结果

注意事项

x + y

和对于 x and y

x - y

difference of x and y

x * y

乘积对于 x and y

x / y

quotient of x and y

(1)

x // y

(floored) quotient of x and y

(4)(5)

x % y

余数对于 x / y

(4)

-x

x negated

+x

x unchanged

abs(x)

absolute value or magnitude of x

(3)

int(x)

x 被转换成整数

(2)

long(x)

x converted to long integer

(2)

float(x)

x 被转换成浮点数

(6)

complex(re,im)

a complex number with real part re , imaginary part im . im defaults to zero.

c.conjugate()

conjugate of the complex number c . (Identity on real numbers)

divmod(x, y)

(x // y, x % y)

(3)(4)

pow(x, y)

x 到幂 y

(3)(7)

x ** y

x 到幂 y

(7)

注意事项:

  1. For (plain or long) integer division, the result is an integer. The result is always rounded towards minus infinity: 1/2 is 0, (-1)/2 is -1, 1/(-2) is -1, and (-1)/(-2) is 0. Note that the result is a long integer if either operand is a long integer, regardless of the numeric value.

  2. Conversion from floats using int() or long() truncates toward zero like the related function, math.trunc() . Use the function math.floor() to round downward and math.ceil() to round upward.

  3. 内置函数 了解完整描述。

  4. 从 2.3 版起弃用: The floor division operator, the modulo operator, and the divmod() function are no longer defined for complex numbers. Instead, convert to a floating point number using the abs() function if appropriate.

  5. Also referred to as integer division. The resultant value is a whole integer, though the result’s type is not necessarily int.

  6. float also accepts the strings “nan” and “inf” with an optional prefix “+” or “-” for Not a Number (NaN) and positive or negative infinity.

    2.6 版新增。

  7. Python 定义 pow(0, 0) and 0 ** 0 1 , as is common for programming languages.

所有 numbers.Real 类型 ( int , long ,和 float ) 还包括以下操作:

操作

结果

math.trunc(x)

x truncated to Integral

round(x[, n])

x 四舍五入到 n digits, rounding ties away from zero. If n is omitted, it defaults to 0.

math.floor(x)

the greatest integer as a float <= x

math.ceil(x)

the least integer as a float >= x

5.4.1. 整数类型的按位运算

Bitwise operations only make sense for integers. Negative numbers are treated as their 2’s complement value (this assumes a sufficiently large number of bits that no overflow occurs during the operation).

The priorities of the binary bitwise operations are all lower than the numeric operations and higher than the comparisons; the unary operation ~ 具有相同优先级,如同其它一元数值运算 ( + and - ).

此表按优先级升序排序,列出按位运算:

操作

结果

注意事项

x | y

bitwise or of x and y

x ^ y

bitwise exclusive or of x and y

x & y

bitwise and of x and y

x << n

x shifted left by n bits

(1)(2)

x >> n

x shifted right by n bits

(1)(3)

~x

the bits of x inverted

注意事项:

  1. 负移位计数是非法的,并会导致 ValueError 要被引发。

  2. 向左移位 n 位,相当于乘以 pow(2, n) . A long integer is returned if the result exceeds the range of plain integers.

  3. 向右移位 n 位,相当于除以 pow(2, n) .

5.4.2. 额外整数类型方法

The integer types implement the numbers.Integral 抽象基类 . In addition, they provide one more method:

int. bit_length ( )
long. bit_length ( )

Return the number of bits necessary to represent an integer in binary, excluding the sign and leading zeros:

>>> n = -37
>>> bin(n)
'-0b100101'
>>> n.bit_length()
6
						

更准确地说,若 x 非 0,那么 x.bit_length() 是唯一正整数 k 这样 2**(k-1) <= abs(x) < 2**k . Equivalently, when abs(x) is small enough to have a correctly rounded logarithm, then k = 1 + int(log(abs(x), 2)) 。若 x is zero, then x.bit_length() 返回 0 .

等效于:

def bit_length(self):
    s = bin(self)       # binary representation:  bin(-37) --> '-0b100101'
    s = s.lstrip('-0b') # remove leading zeros and minus sign
    return len(s)       # len('100101') --> 6
						

2.7 版新增。

5.4.3. 额外浮点方法

浮点类型实现 numbers.Real 抽象基类 . float also has the following additional methods.

float. as_integer_ratio ( )

Return a pair of integers whose ratio is exactly equal to the original float and with a positive denominator. Raises OverflowError on infinities and a ValueError on NaNs.

2.6 版新增。

float. is_integer ( )

返回 True if the float instance is finite with integral value, and False 否则:

>>> (-2.0).is_integer()
True
>>> (3.2).is_integer()
False
						

2.6 版新增。

Two methods support conversion to and from hexadecimal strings. Since Python’s floats are stored internally as binary numbers, converting a float to or from a decimal string usually involves a small rounding error. In contrast, hexadecimal strings allow exact representation and specification of floating-point numbers. This can be useful when debugging, and in numerical work.

float. hex ( )

Return a representation of a floating-point number as a hexadecimal string. For finite floating-point numbers, this representation will always include a leading 0x and a trailing p and exponent.

2.6 版新增。

float. fromhex ( s )

Class method to return the float represented by a hexadecimal string s . The string s may have leading and trailing whitespace.

2.6 版新增。

注意, float.hex() 是实例方法,而 float.fromhex() 是类方法。

A hexadecimal string takes the form:

[sign] ['0x'] integer ['.' fraction] ['p' exponent]
					

其中可选 sign may by either + or - , integer and fraction are strings of hexadecimal digits, and exponent is a decimal integer with an optional leading sign. Case is not significant, and there must be at least one hexadecimal digit in either the integer or the fraction. This syntax is similar to the syntax specified in section 6.4.4.2 of the C99 standard, and also to the syntax used in Java 1.5 onwards. In particular, the output of float.hex() is usable as a hexadecimal floating-point literal in C or Java code, and hexadecimal strings produced by C’s %a format character or Java’s Double.toHexString are accepted by float.fromhex() .

Note that the exponent is written in decimal rather than hexadecimal, and that it gives the power of 2 by which to multiply the coefficient. For example, the hexadecimal string 0x3.a7p10 represents the floating-point number (3 + 10./16 + 7./16**2) * 2.0**10 ,或 3740.0 :

>>> float.fromhex('0x3.a7p10')
3740.0
					

Applying the reverse conversion to 3740.0 gives a different hexadecimal string representing the same number:

>>> float.hex(3740.0)
'0x1.d380000000000p+11'
					

5.5. 迭代器类型

2.2 版新增。

Python supports a concept of iteration over containers. This is implemented using two distinct methods; these are used to allow user-defined classes to support iteration. Sequences, described below in more detail, always support the iteration methods.

需要为容器对象定义一种方法以提供迭代支持:

container. __iter__ ( )

Return an iterator object. The object is required to support the iterator protocol described below. If a container supports different types of iteration, additional methods can be provided to specifically request iterators for those iteration types. (An example of an object supporting multiple forms of iteration would be a tree structure which supports both breadth-first and depth-first traversal.) This method corresponds to the tp_iter slot of the type structure for Python objects in the Python/C API.

The iterator objects themselves are required to support the following two methods, which together form the 迭代器协议 :

iterator. __iter__ ( )

Return the iterator object itself. This is required to allow both containers and iterators to be used with the for and in statements. This method corresponds to the tp_iter slot of the type structure for Python objects in the Python/C API.

iterator. next ( )

Return the next item from the container. If there are no further items, raise the StopIteration exception. This method corresponds to the tp_iternext slot of the type structure for Python objects in the Python/C API.

Python defines several iterator objects to support iteration over general and specific sequence types, dictionaries, and other more specialized forms. The specific types are not important beyond their implementation of the iterator protocol.

The intention of the protocol is that once an iterator’s next() 方法引发 StopIteration , it will continue to do so on subsequent calls. Implementations that do not obey this property are deemed broken. (This constraint was added in Python 2.3; in Python 2.2, various iterators are broken according to this rule.)

5.5.1. 生成器类型

Python 的 generator s provide a convenient way to implement the iterator protocol. If a container object’s __iter__() method is implemented as a generator, it will automatically return an iterator object (technically, a generator object) supplying the __iter__() and next() methods. More information about generators can be found in the documentation for the yield expression .

5.6. 序列类型 — str , unicode , list , tuple , bytearray , buffer , xrange

There are seven sequence types: strings, Unicode strings, lists, tuples, bytearrays, buffers, and xrange objects.

For other containers see the built in dict and set 类,和 collections 模块。

String literals are written in single or double quotes: 'xyzzy' , "frobozz" 。见 字符串文字 for more about string literals. Unicode strings are much like strings, but are specified in the syntax using a preceding 'u' character: u'abc' , u"def" . In addition to the functionality described here, there are also string-specific methods described in the 字符串方法 section. Lists are constructed with square brackets, separating items with commas: [a, b, c] . Tuples are constructed by the comma operator (not within square brackets), with or without enclosing parentheses, but an empty tuple must have the enclosing parentheses, such as a, b, c or () . A single item tuple must have a trailing comma, such as (d,) .

Bytearray objects are created with the built-in function bytearray() .

Buffer objects are not directly supported by Python syntax, but can be created by calling the built-in function buffer() . They don’t support concatenation or repetition.

Objects of type xrange are similar to buffers in that there is no specific syntax to create them, but they are created using the xrange() function. They don’t support slicing, concatenation or repetition, and using in , not in , min() or max() on them is inefficient.

Most sequence types support the following operations. The in and not in operations have the same priorities as the comparison operations. The + and * operations have the same priority as the corresponding numeric operations. 3 Additional methods are provided for 可变序列类型 .

This table lists the sequence operations sorted in ascending priority. In the table, s and t are sequences of the same type; n , i and j are integers:

操作

结果

注意事项

x in s

True if an item of s 等于 x ,否则 False

(1)

x not in s

False if an item of s 等于 x ,否则 True

(1)

s + t

the concatenation of s and t

(6)

s * n, n * s

equivalent to adding s to itself n times

(2)

s[i]

i th item of s , origin 0

(3)

s[i:j]

slice of s from i to j

(3)(4)

s[i:j:k]

slice of s from i to j with step k

(3)(5)

len(s)

length of s

min(s)

smallest item of s

max(s)

largest item of s

s.index(x)

index of the first occurrence of x in s

s.count(x)

total number of occurrences of x in s

Sequence types also support comparisons. In particular, tuples and lists are compared lexicographically by comparing corresponding elements. This means that to compare equal, every element must compare equal and the two sequences must be of the same type and have the same length. (For full details see 比较 in the language reference.)

注意事项:

  1. s is a string or Unicode string object the in and not in operations act like a substring test. In Python versions before 2.3, x had to be a string of length 1. In Python 2.3 and beyond, x may be a string of any length.

  2. Values of n less than 0 are treated as 0 (which yields an empty sequence of the same type as s ). Note that items in the sequence s are not copied; they are referenced multiple times. This often haunts new Python programmers; consider:

    >>> lists = [[]] * 3
    >>> lists
    [[], [], []]
    >>> lists[0].append(3)
    >>> lists
    [[3], [3], [3]]
    								

    What has happened is that [[]] is a one-element list containing an empty list, so all three elements of [[]] * 3 are references to this single empty list. Modifying any of the elements of lists modifies this single list. You can create a list of different lists this way:

    >>> lists = [[] for i in range(3)]
    >>> lists[0].append(3)
    >>> lists[1].append(5)
    >>> lists[2].append(7)
    >>> lists
    [[3], [5], [7]]
    									

    Further explanation is available in the FAQ entry How do I create a multidimensional list? .

  3. i or j is negative, the index is relative to the end of sequence s : len(s) + i or len(s) + j is substituted. But note that -0 仍然是 0 .

  4. The slice of s from i to j is defined as the sequence of items with index k 这样 i <= k < j 。若 i or j 大于 len(s) ,使用 len(s) 。若 i 被省略或 None ,使用 0 。若 j 被省略或 None ,使用 len(s) 。若 i >= j , the slice is empty.

  5. The slice of s from i to j with step k is defined as the sequence of items with index x = i + n*k 这样 0 <= n < (j-i)/k . In other words, the indices are i , i+k , i+2*k , i+3*k and so on, stopping when j is reached (but never including j ). When k is positive, i and j are reduced to len(s) if they are greater. When k 为负, i and j are reduced to len(s) - 1 if they are greater. If i or j are omitted or None , they become “end” values (which end depends on the sign of k ). Note, k cannot be zero. If k is None , it is treated like 1 .

  6. CPython 实现细节: s and t are both strings, some Python implementations such as CPython can usually perform an in-place optimization for assignments of the form s = s + t or s += t . When applicable, this optimization makes quadratic run-time much less likely. This optimization is both version and implementation dependent. For performance sensitive code, it is preferable to use the str.join() method which assures consistent linear concatenation performance across versions and implementations.

    2.4 版改变: Formerly, string concatenation never occurred in-place.

5.6.1. 字符串方法

Below are listed the string methods which both 8-bit strings and Unicode objects support. Some of them are also available on bytearray 对象。

In addition, Python’s strings support the sequence type methods described in the Sequence Types — str, unicode, list, tuple, bytearray, buffer, xrange section. To output formatted strings use template strings or the % operator described in the 字符串格式化操作 section. Also, see the re module for string functions based on regular expressions.

str. capitalize ( )

返回第一个字符大写和其余小写的字符串副本。

For 8-bit strings, this method is locale-dependent.

str. center ( width [ , fillchar ] )

返回居中字符串按长度 width 。铺垫的履行是使用指定 fillchar (default is a space).

2.4 版改变: 支持 fillchar 自变量。

str. count ( sub [ , start [ , end ] ] )

返回非重叠出现次数对于子字符串 sub 在范围 [ start , end ]。可选自变量 start and end 按切片表示法解释。

str. decode ( [ encoding [ , errors ] ] )

Decodes the string using the codec registered for encoding . encoding defaults to the default string encoding. errors may be given to set a different error handling scheme. The default is 'strict' , meaning that encoding errors raise UnicodeError 。其它可能值包括 'ignore' , 'replace' 及任何其它名称注册凭借 codecs.register_error() ,见章节 编解码器基类 .

2.2 版新增。

Changed in version 2.3: Support for other error handling schemes added.

2.7 版改变: 添加支持关键词自变量。

str. encode ( [ encoding [ , errors ] ] )

Return an encoded version of the string. Default encoding is the current default string encoding. errors 可以给定以设置不同错误处理方案。默认 errors is 'strict' ,意味着编码错误引发 UnicodeError 。其它可能值包括 'ignore' , 'replace' , 'xmlcharrefreplace' , 'backslashreplace' 及任何其它名称注册凭借 codecs.register_error() ,见章节 编解码器基类 。对于可能的编码列表,见章节 标准编码 .

2.0 版新增。

Changed in version 2.3: 支持 'xmlcharrefreplace' and 'backslashreplace' and other error handling schemes added.

2.7 版改变: 添加支持关键词自变量。

str. endswith ( suffix [ , start [ , end ] ] )

返回 True 若字符串结束采用指定 suffix ,否则返回 False . suffix can also be a tuple of suffixes to look for. With optional start , test beginning at that position. With optional end , stop comparing at that position.

Changed in version 2.5: Accept tuples as suffix .

str. expandtabs ( [ tabsize ] )

返回以一个或多个空格替换所有 Tab 的字符串副本,从属当前列和给定的 Tab (制表符) 大小。制表符位置出现每 tabsize characters (default is 8, giving tab positions at columns 0, 8, 16 and so on). To expand the string, the current column is set to zero and the string is examined character by character. If the character is a tab ( \t ), one or more space characters are inserted in the result until the current column is equal to the next tab position. (The tab character itself is not copied.) If the character is a newline ( \n ) 或返回 ( \r ), it is copied and the current column is reset to zero. Any other character is copied unchanged and the current column is incremented by one regardless of how the character is represented when printed.

>>> '01\t012\t0123\t01234'.expandtabs()
'01      012     0123    01234'
>>> '01\t012\t0123\t01234'.expandtabs(4)
'01  012 0123    01234'
							
str. find ( sub [ , start [ , end ] ] )

返回在字符串中的最低索引,其中子字符串 sub 被找到在切片 s[start:end] 。可选自变量 start and end 按切片表示法解释。返回 -1 if sub 找不到。

注意

The find() 方法才应被使用,若需要知道位置为 sub 。要校验若 sub 是子字符串或不是,使用 in 运算符:

>>> 'Py' in 'Python'
True
						
str. format ( *args , **kwargs )

Perform a string formatting operation. The string on which this method is called can contain literal text or replacement fields delimited by braces {} . Each replacement field contains either the numeric index of a positional argument, or the name of a keyword argument. Returns a copy of the string where each replacement field is replaced with the string value of the corresponding argument.

>>> "The sum of 1 + 2 is {0}".format(1+2)
'The sum of 1 + 2 is 3'
							

格式字符串语法 for a description of the various formatting options that can be specified in format strings.

This method of string formatting is the new standard in Python 3, and should be preferred to the % formatting described in 字符串格式化操作 in new code.

2.6 版新增。

str. index ( sub [ , start [ , end ] ] )

find() ,但会引发 ValueError 当找不到子字符串时。

str. isalnum ( )

Return true if all characters in the string are alphanumeric and there is at least one character, false otherwise.

For 8-bit strings, this method is locale-dependent.

str. isalpha ( )

Return true if all characters in the string are alphabetic and there is at least one character, false otherwise.

For 8-bit strings, this method is locale-dependent.

str. isdigit ( )

Return true if all characters in the string are digits and there is at least one character, false otherwise.

For 8-bit strings, this method is locale-dependent.

str. islower ( )

Return true if all cased characters 4 in the string are lowercase and there is at least one cased character, false otherwise.

For 8-bit strings, this method is locale-dependent.

str. isspace ( )

Return true if there are only whitespace characters in the string and there is at least one character, false otherwise.

For 8-bit strings, this method is locale-dependent.

str. istitle ( )

Return true if the string is a titlecased string and there is at least one character, for example uppercase characters may only follow uncased characters and lowercase characters only cased ones. Return false otherwise.

For 8-bit strings, this method is locale-dependent.

str. isupper ( )

Return true if all cased characters 4 in the string are uppercase and there is at least one cased character, false otherwise.

For 8-bit strings, this method is locale-dependent.

str. join ( iterable )

Return a string which is the concatenation of the strings in iterable . If there is any Unicode object in iterable , return a Unicode instead. A TypeError will be raised if there are any non-string or non Unicode object values in iterable . The separator between elements is the string providing this method.

str. ljust ( width [ , fillchar ] )

返回字符串的左对齐字符串按长度 width 。铺垫的履行是使用指定 fillchar (default is a space). The original string is returned if width <= len(s) .

2.4 版改变: 支持 fillchar 自变量。

str. lower ( )

返回的字符串副本具有所有大小写字符 4 被转换成小写。

For 8-bit strings, this method is locale-dependent.

str. lstrip ( [ chars ] )

返回移除前导字符的字符串拷贝。 chars 自变量是指定要移除字符集的字符串。若省略或 None chars 自变量默认为移除空白。 chars 自变量不是前缀;在一定程度上,会剥离其值的所有组合:

>>> '   spacious   '.lstrip()
'spacious   '
>>> 'www.example.com'.lstrip('cmowz.')
'example.com'
								

Changed in version 2.2.2: 支持 chars 自变量。

str. partition ( sep )

Split the string at the first occurrence of sep , and return a 3-tuple containing the part before the separator, the separator itself, and the part after the separator. If the separator is not found, return a 3-tuple containing the string itself, followed by two empty strings.

2.5 版新增。

str. replace ( old , new [ , count ] )

返回字符串副本具有所有出现的子字符串 old 被替换通过 new 。若可选自变量 count 有给定,仅前 count 出现被替换。

str. rfind ( sub [ , start [ , end ] ] )

返回字符串中的最高索引,若子字符串 sub 被发现,这种 sub 包含在 s[start:end] 。可选自变量 start and end 按切片表示法解释。返回 -1 当故障时。

str. rindex ( sub [ , start [ , end ] ] )

rfind() 但引发 ValueError 当子字符串 sub 找不到。

str. rjust ( width [ , fillchar ] )

返回字符串的右对齐字符串按长度 width 。铺垫的履行是使用指定 fillchar (default is a space). The original string is returned if width <= len(s) .

2.4 版改变: 支持 fillchar 自变量。

str. rpartition ( sep )

Split the string at the last occurrence of sep , and return a 3-tuple containing the part before the separator, the separator itself, and the part after the separator. If the separator is not found, return a 3-tuple containing two empty strings, followed by the string itself.

2.5 版新增。

str. rsplit ( [ sep [ , maxsplit ] ] )

返回字符串中单词的列表,使用 sep 作为定界符字符串。若 maxsplit is given, at most maxsplit splits are done, the rightmost ones. If sep 未指定或 None , any whitespace string is a separator. Except for splitting from the right, rsplit() behaves like split() which is described in detail below.

2.4 版新增。

str. rstrip ( [ chars ] )

返回移除结尾字符的字符串拷贝。 chars 自变量是指定要移除字符集的字符串。若省略或 None chars 自变量默认为移除空白。 chars 自变量不是后缀;在一定程度上,会剥离其值的所有组合:

>>> '   spacious   '.rstrip()
'   spacious'
>>> 'mississippi'.rstrip('ipz')
'mississ'
								

Changed in version 2.2.2: 支持 chars 自变量。

str. split ( [ sep [ , maxsplit ] ] )

返回字符串中单词的列表,使用 sep 作为定界符字符串。若 maxsplit is given, at most maxsplit splits are done (thus, the list will have at most maxsplit+1 elements). If maxsplit 未指定或 -1 , then there is no limit on the number of splits (all possible splits are made).

sep is given, consecutive delimiters are not grouped together and are deemed to delimit empty strings (for example, '1,,2'.split(',') 返回 ['1', '', '2'] )。 sep argument may consist of multiple characters (for example, '1<>2<>3'.split('<>') 返回 ['1', '2', '3'] ). Splitting an empty string with a specified separator returns [''] .

sep 未指定或是 None , a different splitting algorithm is applied: runs of consecutive whitespace are regarded as a single separator, and the result will contain no empty strings at the start or end if the string has leading or trailing whitespace. Consequently, splitting an empty string or a string consisting of just whitespace with a None separator returns [] .

例如, ' 1  2   3  '.split() 返回 ['1', '2', '3'] ,和 '  1  2   3  '.split(None, 1) 返回 ['1', '2   3  '] .

str. splitlines ( [ keepends ] )

Return a list of the lines in the string, breaking at line boundaries. This method uses the 通用换行符 approach to splitting lines. Line breaks are not included in the resulting list unless keepends is given and true.

Python recognizes "\r" , "\n" ,和 "\r\n" as line boundaries for 8-bit strings.

例如:

>>> 'ab c\n\nde fg\rkl\r\n'.splitlines()
['ab c', '', 'de fg', 'kl']
>>> 'ab c\n\nde fg\rkl\r\n'.splitlines(True)
['ab c\n', '\n', 'de fg\r', 'kl\r\n']
							

不像 split() when a delimiter string sep is given, this method returns an empty list for the empty string, and a terminal line break does not result in an extra line:

>>> "".splitlines()
[]
>>> "One line\n".splitlines()
['One line']
							

为比较, split('\n') gives:

>>> ''.split('\n')
['']
>>> 'Two lines\n'.split('\n')
['Two lines', '']
							
unicode. splitlines ( [ keepends ] )

Return a list of the lines in the string, like str.splitlines() . However, the Unicode method splits on the following line boundaries, which are a superset of the 通用换行符 recognized for 8-bit strings.

表示

描述

\n

换行

\r

CR (回车)

\r\n

Carriage Return + Line Feed

\v or \x0b

Line Tabulation

\f or \x0c

换页

\x1c

文件分隔符

\x1d

组分隔符

\x1e

记录分隔符

\x85

Next Line (C1 Control Code)

\u2028

行分隔符

\u2029

段落分隔符

2.7 版改变: \v and \f 被添加到行边界列表。

str. startswith ( prefix [ , start [ , end ] ] )

返回 True 若字符串开始采用 prefix ,否则返回 False . prefix can also be a tuple of prefixes to look for. With optional start , test string beginning at that position. With optional end , stop comparing string at that position.

Changed in version 2.5: Accept tuples as prefix .

str. strip ( [ chars ] )

Return a copy of the string with the leading and trailing characters removed. The chars 自变量是指定要移除字符集的字符串。若省略或 None chars 自变量默认为移除空白。 chars 自变量不是前缀 (或后缀);在一定程度上,会剥离其值的所有组合:

>>> '   spacious   '.strip()
'spacious'
>>> 'www.example.com'.strip('cmowz.')
'example'
								

Changed in version 2.2.2: 支持 chars 自变量。

str. swapcase ( )

Return a copy of the string with uppercase characters converted to lowercase and vice versa.

For 8-bit strings, this method is locale-dependent.

str. title ( )

返回字符串的首字母大写版本,单词以大写字符开头,其余字符为小写。

The algorithm uses a simple language-independent definition of a word as groups of consecutive letters. The definition works in many contexts but it means that apostrophes in contractions and possessives form word boundaries, which may not be the desired result:

>>> "they're bill's friends from the UK".title()
"They'Re Bill'S Friends From The Uk"
								

A workaround for apostrophes can be constructed using regular expressions:

>>> import re
>>> def titlecase(s):
...     return re.sub(r"[A-Za-z]+('[A-Za-z]+)?",
...                   lambda mo: mo.group(0)[0].upper() +
...                              mo.group(0)[1:].lower(),
...                   s)
...
>>> titlecase("they're bill's friends.")
"They're Bill's Friends."
								

For 8-bit strings, this method is locale-dependent.

str. translate ( table [ , deletechars ] )

Return a copy of the string where all characters occurring in the optional argument deletechars are removed, and the remaining characters have been mapped through the given translation table, which must be a string of length 256.

可以使用 maketrans() helper function in the string module to create a translation table. For string objects, set the table 自变量对于 None for translations that only delete characters:

>>> 'read this short text'.translate(None, 'aeiou')
'rd ths shrt txt'
									

2.6 版新增: Support for a None table 自变量。

For Unicode objects, the translate() method does not accept the optional deletechars argument. Instead, it returns a copy of the s where all characters have been mapped through the given translation table which must be a mapping of Unicode ordinals to Unicode ordinals, Unicode strings or None . Unmapped characters are left untouched. Characters mapped to None are deleted. Note, a more flexible approach is to create a custom character mapping codec using the codecs module (see encodings.cp1251 了解范例)。

str. upper ( )

返回的字符串副本具有所有大小写字符 4 被转换成大写。注意, s.upper().isupper() 可以是 False if s contains uncased characters or if the Unicode category of the resulting character(s) is not “Lu” (Letter, uppercase), but e.g. “Lt” (Letter, titlecase).

For 8-bit strings, this method is locale-dependent.

str. zfill ( width )

Return the numeric string left filled with zeros in a string of length width . A sign prefix is handled correctly. The original string is returned if width <= len(s) .

New in version 2.2.2.

The following methods are present only on unicode objects:

unicode. isnumeric ( )

返回 True if there are only numeric characters in S, False otherwise. Numeric characters include digit characters, and all characters that have the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION ONE FIFTH.

unicode. isdecimal ( )

返回 True if there are only decimal characters in S, False otherwise. Decimal characters include digit characters, and all characters that can be used to form decimal-radix numbers, e.g. U+0660, ARABIC-INDIC DIGIT ZERO.

5.6.2. 字符串格式化操作

String and Unicode objects have one unique built-in operation: the % operator (modulo). This is also known as the string formatting or interpolation operator. Given format % values (在哪里 format is a string or Unicode object), % conversion specifications in format are replaced with zero or more elements of . The effect is similar to the using sprintf() in the C language. If format is a Unicode object, or if any of the objects being converted using the %s conversion are Unicode objects, the result will also be a Unicode object.

format requires a single argument, may be a single non-tuple object. 5 否则, must be a tuple with exactly the number of items specified by the format string, or a single mapping object (for example, a dictionary).

A conversion specifier contains two or more characters and has the following components, which must occur in this order:

  1. The '%' character, which marks the start of the specifier.

  2. Mapping key (optional), consisting of a parenthesised sequence of characters (for example, (somename) ).

  3. Conversion flags (optional), which affect the result of some conversion types.

  4. Minimum field width (optional). If specified as an '*' (asterisk), the actual width is read from the next element of the tuple in , and the object to convert comes after the minimum field width and optional precision.

  5. Precision (optional), given as a '.' (dot) followed by the precision. If specified as '*' (an asterisk), the actual width is read from the next element of the tuple in , and the value to convert comes after the precision.

  6. Length modifier (optional).

  7. 转换类型。

When the right argument is a dictionary (or other mapping type), then the formats in the string must include a parenthesised mapping key into that dictionary inserted immediately after the '%' character. The mapping key selects the value to be formatted from the mapping. For example:

>>> print '%(language)s has %(number)03d quote types.' % \
...       {"language": "Python", "number": 2}
Python has 002 quote types.
							

In this case no * specifiers may occur in a format (since they require a sequential parameter list).

转换标志字符:

标志

含义

'#'

The value conversion will use the “alternate form” (where defined below).

'0'

The conversion will be zero padded for numeric values.

'-'

The converted value is left adjusted (overrides the '0' conversion if both are given).

' '

(a space) A blank should be left before a positive number (or empty string) produced by a signed conversion.

'+'

A sign character ( '+' or '-' ) will precede the conversion (overrides a “space” flag).

A length modifier ( h , l ,或 L ) may be present, but is ignored as it is not necessary for Python – so e.g. %ld is identical to %d .

转换类型:

转换

含义

注意事项

'd'

有符号整数十进制。

'i'

有符号整数十进制。

'o'

有符号八进制值。 (1)

'u'

过时 type – 它等同于 'd' .

(7)

'x'

有符号十六进制 (小写)。 (2)

'X'

有符号十六进制 (大写)。 (2)

'e'

浮点指数格式 (小写)。 (3)

'E'

浮点指数格式 (大写)。 (3)

'f'

浮点十进制格式。 (3)

'F'

浮点十进制格式。 (3)

'g'

Floating point format. Uses lowercase exponential format if exponent is less than -4 or not less than precision, decimal format otherwise. (4)

'G'

Floating point format. Uses uppercase exponential format if exponent is less than -4 or not less than precision, decimal format otherwise. (4)

'c'

Single character (accepts integer or single character string).

'r'

字符串 (转换任何 Python 对象使用 repr() ).

(5)

's'

字符串 (转换任何 Python 对象使用 str() ).

(6)

'%'

No argument is converted, results in a '%' character in the result.

注意事项:

  1. The alternate form causes a leading zero ( '0' ) to be inserted between left-hand padding and the formatting of the number if the leading character of the result is not already a zero.

  2. The alternate form causes a leading '0x' or '0X' (depending on whether the 'x' or 'X' format was used) to be inserted before the first digit.

  3. The alternate form causes the result to always contain a decimal point, even if no digits follow it.

    The precision determines the number of digits after the decimal point and defaults to 6.

  4. The alternate form causes the result to always contain a decimal point, and trailing zeroes are not removed as they would otherwise be.

    The precision determines the number of significant digits before and after the decimal point and defaults to 6.

  5. The %r conversion was added in Python 2.0.

    The precision determines the maximal number of characters used.

  6. If the object or format provided is a unicode string, the resulting string will also be unicode .

    The precision determines the maximal number of characters used.

  7. PEP 237 .

由于 Python 字符串有明确长度, %s 转换未假定 '\0' 是字符串末尾。

2.7 版改变: %f 转换对于绝对值大于 1e50 的数字不再替换通过 %g 转换。

Additional string operations are defined in standard modules string and re .

5.6.3. XRange Type

The xrange type is an immutable sequence which is commonly used for looping. The advantage of the xrange type is that an xrange object will always take the same amount of memory, no matter the size of the range it represents. There are no consistent performance advantages.

XRange objects have very little behavior: they only support indexing, iteration, and the len() 函数。

5.6.4. 可变序列类型

List and bytearray objects support additional operations that allow in-place modification of the object. Other mutable sequence types (when added to the language) should also support these operations. Strings and tuples are immutable sequence types: such objects cannot be modified once created. The following operations are defined on mutable sequence types (where x is an arbitrary object):

操作

结果

注意事项

s[i] = x

item i of s 被替换通过 x

s[i:j] = t

slice of s from i to j is replaced by the contents of the iterable t

del s[i:j]

如同 s[i:j] = []

s[i:j:k] = t

the elements of s[i:j:k] are replaced by those of t

(1)

del s[i:j:k]

removes the elements of s[i:j:k] from the list

s.append(x)

如同 s[len(s):len(s)] = [x]

(2)

s.extend(t) or s += t

for the most part the same as s[len(s):len(s)] = t

(3)

s *= n

更新 s with its contents repeated n times

(11)

s.count(x)

return number of i ’s for which s[i] == x

s.index(x[, i[, j]])

return smallest k 这样 s[k] == x and i <= k < j

(4)

s.insert(i, x)

如同 s[i:i] = [x]

(5)

s.pop([i])

如同 x = s[i]; del s[i]; return x

(6)

s.remove(x)

如同 del s[s.index(x)]

(4)

s.reverse()

reverses the items of s in place

(7)

s.sort([cmp[, key[, reverse]]])

sort the items of s in place

(7)(8)(9)(10)

注意事项:

  1. t 必须与要替换切片具有相同的长度。

  2. The C implementation of Python has historically accepted multiple parameters and implicitly joined them into a tuple; this no longer works in Python 2.0. Use of this misfeature has been deprecated since Python 1.4.

  3. t can be any iterable object.

  4. 引发 ValueError x 找不到在 s . When a negative index is passed as the second or third parameter to the index() method, the list length is added, as for slice indices. If it is still negative, it is truncated to zero, as for slice indices.

    Changed in version 2.3: 先前, index() didn’t have arguments for specifying start and stop positions.

  5. When a negative index is passed as the first parameter to the insert() method, the list length is added, as for slice indices. If it is still negative, it is truncated to zero, as for slice indices.

    Changed in version 2.3: Previously, all negative indices were truncated to zero.

  6. The pop() method’s optional argument i 默认为 -1 ,因此默认情况下,最后项会被移除并返回。

  7. The sort() and reverse() methods modify the list in place for economy of space when sorting or reversing a large list. To remind you that they operate by side effect, they don’t return the sorted or reversed list.

  8. The sort() method takes optional arguments for controlling the comparisons.

    cmp specifies a custom comparison function of two arguments (list items) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument: cmp=lambda x,y: cmp(x.lower(), y.lower()) 。默认值为 None .

    key specifies a function of one argument that is used to extract a comparison key from each list element: key=str.lower 。默认值为 None .

    reverse 是布尔值。若设为 True ,则对列表元素排序,就好像反转每一比较。

    一般而言, key and reverse conversion processes are much faster than specifying an equivalent cmp function. This is because cmp is called multiple times for each list element while key and reverse touch each element only once. Use functools.cmp_to_key() 以转换旧样式 cmp 函数到 key 函数。

    Changed in version 2.3: 支持 None as an equivalent to omitting cmp 被添加。

    2.4 版改变: 支持 key and reverse 被添加。

  9. Starting with Python 2.3, the sort() method is guaranteed to be stable. A sort is stable if it guarantees not to change the relative order of elements that compare equal — this is helpful for sorting in multiple passes (for example, sort by department, then by salary grade).

  10. CPython 实现细节: While a list is being sorted, the effect of attempting to mutate, or even inspect, the list is undefined. The C implementation of Python 2.3 and newer makes the list appear empty for the duration, and raises ValueError if it can detect that the list has been mutated during a sort.

  11. n is an integer, or an object implementing __index__() . Zero and negative values of n clear the sequence. Items in the sequence are not copied; they are referenced multiple times, as explained for s * n under Sequence Types — str, unicode, list, tuple, bytearray, buffer, xrange .

5.7. 集类型 — set , frozenset

A set 对象是无序集合的截然不同 hashable objects. Common uses include membership testing, removing duplicates from a sequence, and computing mathematical operations such as intersection, union, difference, and symmetric difference. (For other containers see the built in dict , list ,和 tuple 类,和 collections 模块。)

2.4 版新增。

Like other collections, sets support x in set , len(set) ,和 for x in set . Being an unordered collection, sets do not record element position or order of insertion. Accordingly, sets do not support indexing, slicing, or other sequence-like behavior.

There are currently two built-in set types, set and frozenset set type is mutable — the contents can be changed using methods like add() and remove() . Since it is mutable, it has no hash value and cannot be used as either a dictionary key or as an element of another set. The frozenset type is immutable and hashable — its contents cannot be altered after it is created; it can therefore be used as a dictionary key or as an element of another set.

As of Python 2.7, non-empty sets (not frozensets) can be created by placing a comma-separated list of elements within braces, for example: {'jack', 'sjoerd'} , in addition to the set 构造函数。

这 2 个类的构造函数工作方式相同:

class set ( [ iterable ] )
class frozenset ( [ iterable ] )

返回新 set 或 frozenset 对象的元素取自 iterable 。集元素必须 hashable 。要表示集的集,内部集必须是 frozenset 对象。若 iterable 未指定,返回新的空集。

实例化的 set and frozenset 提供以下操作:

len(s)

返回元素的数量对于集 s (基数对于 s ).

x in s

测试 x 为成员资格在 s .

x not in s

测试 x 为非成员资格在 s .

isdisjoint ( other )

返回 True 若集没有元素相同于 other 。集不相交当且仅当它们的交集为空集时。

2.6 版新增。

issubset ( other )
set <= other

测试集中的每一元素是否都在 other .

set < other

Test whether the set is a proper subset of other ,也就是说, set <= other and set != other .

issuperset ( other )
set >= other

Test whether every element in other is in the set.

set > other

Test whether the set is a proper superset of other ,也就是说, set >= other and set != other .

union ( *others )
set | other | ...

返回带有集和所有其它 others 的元素的新集。

2.6 版改变: Accepts multiple input iterables.

intersection ( *others )
set & other & ...

返回带有集和所有 others 的共有元素的新集。

2.6 版改变: Accepts multiple input iterables.

difference ( *others )
set - other - ...

返回新集,且集元素中不在 others 中。

2.6 版改变: Accepts multiple input iterables.

symmetric_difference ( other )
set ^ other

Return a new set with elements in either the set or other but not both.

copy ( )

返回集的浅拷贝。

注意,非运算符版本的 union() , intersection() , difference() ,和 symmetric_difference() , issubset() ,和 issuperset() methods will accept any iterable as an argument. In contrast, their operator based counterparts require their arguments to be sets. This precludes error-prone constructions like set('abc') & 'cbs' in favor of the more readable set('abc').intersection('cbs') .

Both set and frozenset support set to set comparisons. Two sets are equal if and only if every element of each set is contained in the other (each is a subset of the other). A set is less than another set if and only if the first set is a proper subset of the second set (is a subset, but is not equal). A set is greater than another set if and only if the first set is a proper superset of the second set (is a superset, but is not equal).

实例化的 set are compared to instances of frozenset based on their members. For example, set('abc') == frozenset('abc') 返回 True and so does set('abc') in set([frozenset('abc')]) .

The subset and equality comparisons do not generalize to a total ordering function. For example, any two non-empty disjoint sets are not equal and are not subsets of each other, so all of the following return False : a<b , a==b ,或 a>b . Accordingly, sets do not implement the __cmp__() 方法。

Since sets only define partial ordering (subset relationships), the output of the list.sort() method is undefined for lists of sets.

像字典键的集元素必须 hashable .

二进制操作混合 set 实例与 frozenset return the type of the first operand. For example: frozenset('ab') | set('bc') 返回实例化的 frozenset .

The following table lists operations available for set that do not apply to immutable instances of frozenset :

update ( *others )
set |= other | ...

更新集,添加来自所有 others 的元素。

2.6 版改变: Accepts multiple input iterables.

intersection_update ( *others )
set &= other & ...

更新集,仅保持在它和所有 others 中找到的元素。

2.6 版改变: Accepts multiple input iterables.

difference_update ( *others )
set -= other | ...

更新集,移除在 others 中找到的元素。

2.6 版改变: Accepts multiple input iterables.

symmetric_difference_update ( other )
set ^= other

更新集,只保持在集中找到的元素,而不是两者中的元素。

add ( elem )

添加元素 elem 到集。

remove ( elem )

移除元素 elem 从集。引发 KeyError if elem 未包含在集中。

discard ( elem )

移除元素 elem 从集,若存在。

pop ( )

移除并返回任意集元素。引发 KeyError 若集为空。

clear ( )

移除所有集元素。

注意,非运算符版本的 update() , intersection_update() , difference_update() ,和 symmetric_difference_update() 方法将接受任何可迭代作为自变量。

注意: elem 自变量到 __contains__() , remove() ,和 discard() 方法可能有设置。为支持搜索等效冻结集,临时创建一个从 elem .

另请参阅

Comparison to the built-in set types

Differences between the sets module and the built-in set types.

5.8. 映射类型 — dict

A 映射 对象映射 hashable 值到任意对象。映射是可变对象。目前只有一种标准映射类型, dictionary . (For other containers see the built in list , set ,和 tuple 类,和 collections 模块。)

字典键是 almost 任意值。值不 hashable ,也就是说,包含列表、字典或其它可变类型 (通过值而不是对象标识进行比较) 的值不可以用作键。用作键的数值类型服从正常数值比较规则:若 2 数值比较相等 (譬如 1 and 1.0 ) 那么可以互换使用它们来索引相同字典条目 (不管怎样,注意,由于计算机按近似存储浮点数,因此将它们用作字典键通常是不明智的)。

可以创建字典通过放置逗号分隔的列表对于 key: value 对在花括号内,例如: {'jack': 4098, 'sjoerd': 4127} or {4098: 'jack', 4127: 'sjoerd'} , or by the dict 构造函数。

class dict ( **kwarg )
class dict ( 映射 , **kwarg )
class dict ( iterable , **kwarg )

返回初始化自可选位置自变量和一组可能为空的关键词自变量的新字典。

若位置自变量未给定,创建空字典。若位置自变量有给定且是映射对象,创建字典具有如映射对象的相同键值对。否则,位置自变量必须是 iterable 对象。iterable (可迭代) 中的各项本身必须是恰好具有 2 对象的可迭代。各项的第 1 对象变为新字典键,而第 2 对象变为相应值。若键有出现多次,该键的最后值变为新字典相应值。

若关键词自变量有给定,关键词自变量及其值会被添加到从位置自变量创建的字典。若要添加的 key (键) 已存在,来自关键词自变量的 value (值) 会替换来自位置自变量的值。

为阐明,下列范例返回的字典都等于 {"one": 1, "two": 2, "three": 3} :

>>> a = dict(one=1, two=2, three=3)
>>> b = {'one': 1, 'two': 2, 'three': 3}
>>> c = dict(zip(['one', 'two', 'three'], [1, 2, 3]))
>>> d = dict([('two', 2), ('one', 1), ('three', 3)])
>>> e = dict({'three': 3, 'one': 1, 'two': 2})
>>> a == b == c == d == e
True
									

如第 1 范例提供的关键词自变量,仅工作于有效 Python 标识符键。否则,可以使用任何有效 key (键)。

2.2 版新增。

Changed in version 2.3: Support for building a dictionary from keyword arguments added.

这些是字典支持的操作 (因此,自定义映射类型也应该支持):

len(d)

返回项数对于字典 d .

d[key]

返回项在 d 采用键 key 。引发 KeyError if key 不在映射中。

若字典的子类有定义方法 __missing__() and key 不存在, d[key] 操作将调用该方法采用键 key 作为自变量。 d[key] 操作然后返回或引发返回任何或被引发通过 __missing__(key) 调用。其它操作或方法不会援引 __missing__() 。若 __missing__() 未定义, KeyError 被引发。 __missing__() 必须是方法;它不能是实例变量:

>>> class Counter(dict):
...     def __missing__(self, key):
...         return 0
>>> c = Counter()
>>> c['red']
0
>>> c['red'] += 1
>>> c['red']
1
											

以上范例展示部分实现为 collections.Counter 。不同 __missing__ 方法被用于 collections.defaultdict .

New in version 2.5: Recognition of __missing__ methods of dict subclasses.

d[key] = value

Set d[key] to value .

del d[key]

移除 d[key] from d 。引发 KeyError if key 不在映射中。

key in d

返回 True if d 拥有键 key ,否则 False .

2.2 版新增。

key not in d

相当于 not key in d .

2.2 版新增。

iter(d)

返回覆盖字典键的迭代器。这是快捷方式为 iterkeys() .

clear ( )

移除所有项从字典。

copy ( )

返回字典的浅拷贝。

fromkeys ( seq [ , ] )

创建新字典采用键来自 seq 并把值设为 value .

fromkeys() 是返回新字典的类方法。 value 默认为 None .

2.3 版新增。

get ( key [ , default ] )

返回值为 key if key 在字典中,否则 default 。若 default 不给定,默认为 None ,因此此方法从不引发 KeyError .

has_key ( key )

Test for the presence of key in the dictionary. has_key() is deprecated in favor of key in d .

( )

Return a copy of the dictionary’s list of (key, value) pairs.

CPython 实现细节: Keys and values are listed in an arbitrary order which is non-random, varies across Python implementations, and depends on the dictionary’s history of insertions and deletions.

items() , keys() , values() , iteritems() , iterkeys() ,和 itervalues() are called with no intervening modifications to the dictionary, the lists will directly correspond. This allows the creation of (value, key) pairs using zip() : pairs = zip(d.values(), d.keys()) . The same relationship holds for the iterkeys() and itervalues() 方法: pairs = zip(d.itervalues(), d.iterkeys()) provides the same value for pairs . Another way to create the same list is pairs = [(v, k) for (k, v) in d.iteritems()] .

iteritems ( )

Return an iterator over the dictionary’s (key, value) pairs. See the note for dict.items() .

使用 iteritems() while adding or deleting entries in the dictionary may raise a RuntimeError or fail to iterate over all entries.

2.2 版新增。

iterkeys ( )

Return an iterator over the dictionary’s keys. See the note for dict.items() .

使用 iterkeys() while adding or deleting entries in the dictionary may raise a RuntimeError or fail to iterate over all entries.

2.2 版新增。

itervalues ( )

Return an iterator over the dictionary’s values. See the note for dict.items() .

使用 itervalues() while adding or deleting entries in the dictionary may raise a RuntimeError or fail to iterate over all entries.

2.2 版新增。

keys ( )

Return a copy of the dictionary’s list of keys. See the note for dict.items() .

pop ( key [ , default ] )

key 在字典中,移除它并返回其值,否则返回 default 。若 default 未给定且 key 不在字典中, KeyError 被引发。

2.3 版新增。

popitem ( )

移除并返回任意 (key, value) 对从字典。

popitem() 对破坏性迭代字典很有用,这常用于集合算法。若字典为空,调用 popitem() 引发 KeyError .

setdefault ( key [ , default ] )

key 在字典中,返回其值。若不在,插入 key 采用值 default 并返回 default . default 默认为 None .

update ( [ other ] )

更新字典采用键/值对来自 other ,覆写现有键。返回 None .

update() 接受另一字典对象或键/值对可迭代 (作为 2 长元组或其它可迭代)。若指定关键词自变量,则采用这些键/值对更新字典: d.update(red=1, blue=2) .

2.4 版改变: Allowed the argument to be an iterable of key/value pairs and allowed keyword arguments.

( )

Return a copy of the dictionary’s list of values. See the note for dict.items() .

viewitems ( )

返回新视图为字典项 ( (key, value) pairs). See below for documentation of view objects.

2.7 版新增。

viewkeys ( )

Return a new view of the dictionary’s keys. See below for documentation of view objects.

2.7 版新增。

viewvalues ( )

Return a new view of the dictionary’s values. See below for documentation of view objects.

2.7 版新增。

字典比较相等,当且仅当它们拥有相同 (key, value) pairs.

5.8.1. 字典视图对象

对象返回通过 dict.viewkeys() , dict.viewvalues() and dict.viewitems() are 视图对象 . They provide a dynamic view on the dictionary’s entries, which means that when the dictionary changes, the view reflects these changes.

Dictionary views can be iterated over to yield their respective data, and support membership tests:

len(dictview)

返回字典条目数。

iter(dictview)

Return an iterator over the keys, values or items (represented as tuples of (key, value) ) 在字典中。

Keys and values are iterated over in an arbitrary order which is non-random, varies across Python implementations, and depends on the dictionary’s history of insertions and deletions. If keys, values and items views are iterated over with no intervening modifications to the dictionary, the order of items will directly correspond. This allows the creation of (value, key) pairs using zip() : pairs = zip(d.values(), d.keys()) . Another way to create the same list is pairs = [(v, k) for (k, v) in d.items()] .

Iterating views while adding or deleting entries in the dictionary may raise a RuntimeError or fail to iterate over all entries.

x in dictview

返回 True if x is in the underlying dictionary’s keys, values or items (in the latter case, x 应该为 (key, value) 元组)。

Keys views are set-like since their entries are unique and hashable. If all values are hashable, so that (key, value) pairs are unique and hashable, then the items view is also set-like. (Values views are not treated as set-like since the entries are generally not unique.) Then these set operations are available (“other” refers either to another view or a set):

dictview & other

Return the intersection of the dictview and the other object as a new set.

dictview | other

Return the union of the dictview and the other object as a new set.

dictview - other

Return the difference between the dictview and the other object (all elements in dictview that aren’t in other ) as a new set.

dictview ^ other

Return the symmetric difference (all elements either in dictview or other , but not in both) of the dictview and the other object as a new set.

字典视图的用法范例:

>>> dishes = {'eggs': 2, 'sausage': 1, 'bacon': 1, 'spam': 500}
>>> keys = dishes.viewkeys()
>>> values = dishes.viewvalues()
>>> # iteration
>>> n = 0
>>> for val in values:
...     n += val
>>> print(n)
504
>>> # keys and values are iterated over in the same order
>>> list(keys)
['eggs', 'bacon', 'sausage', 'spam']
>>> list(values)
[2, 1, 1, 500]
>>> # view objects are dynamic and reflect dict changes
>>> del dishes['eggs']
>>> del dishes['sausage']
>>> list(keys)
['spam', 'bacon']
>>> # set operations
>>> keys & {'eggs', 'bacon', 'salad'}
{'bacon'}
							

5.9. 文件对象

File objects are implemented using C’s stdio package and can be created with the built-in open() function. File objects are also returned by some other built-in functions and methods, such as os.popen() and os.fdopen() makefile() method of socket objects. Temporary files can be created using the tempfile module, and high-level file operations such as copying, moving, and deleting files and directories can be achieved with the shutil 模块。

When a file operation fails for an I/O-related reason, the exception IOError is raised. This includes situations where the operation is not defined for some reason, like seek() on a tty device or writing a file opened for reading.

Files have the following methods:

文件。 close ( )

Close the file. A closed file cannot be read or written any more. Any operation which requires that the file be open will raise a ValueError after the file has been closed. Calling close() more than once is allowed.

As of Python 2.5, you can avoid having to call this method explicitly if you use the with statement. For example, the following code will automatically close f with block is exited:

from __future__ import with_statement # This isn't required in Python 2.6
with open("hello.txt") as f:
    for line in f:
        print line,
									

In older versions of Python, you would have needed to do this to get the same effect:

f = open("hello.txt")
try:
    for line in f:
        print line,
finally:
    f.close()
									

注意

Not all “file-like” types in Python support use as a context manager for the with statement. If your code is intended to work with any file-like object, you can use the function contextlib.closing() instead of using the object directly.

文件。 flush ( )

Flush the internal buffer, like stdio ’s fflush() . This may be a no-op on some file-like objects.

注意

flush() does not necessarily write the file’s data to disk. Use flush() followed by os.fsync() to ensure this behavior.

文件。 fileno ( )

Return the integer “file descriptor” that is used by the underlying implementation to request I/O operations from the operating system. This can be useful for other, lower level interfaces that use file descriptors, such as the fcntl 模块或 os.read() and friends.

注意

File-like objects which do not have a real file descriptor should not provide this method!

文件。 isatty ( )

返回 True if the file is connected to a tty(-like) device, else False .

注意

If a file-like object is not associated with a real file, this method should not be implemented.

文件。 next ( )

A file object is its own iterator, for example iter(f) 返回 f (unless f is closed). When a file is used as an iterator, typically in a for loop (for example, for line in f: print line.strip() ), next() method is called repeatedly. This method returns the next input line, or raises StopIteration when EOF is hit when the file is open for reading (behavior is undefined when the file is open for writing). In order to make a for loop the most efficient way of looping over the lines of a file (a very common operation), the next() method uses a hidden read-ahead buffer. As a consequence of using a read-ahead buffer, combining next() with other file methods (like readline() ) does not work right. However, using seek() to reposition the file to an absolute position will flush the read-ahead buffer.

2.3 版新增。

文件。 read ( [ size ] )

读取最多 size bytes from the file (less if the read hits EOF before obtaining size bytes). If the size argument is negative or omitted, read all data until EOF is reached. The bytes are returned as a string object. An empty string is returned when EOF is encountered immediately. (For certain files, like ttys, it makes sense to continue reading after an EOF is hit.) Note that this method may call the underlying C function fread() more than once in an effort to acquire as close to size bytes as possible. Also note that when in non-blocking mode, less data than was requested may be returned, even if no size parameter was given.

注意

This function is simply a wrapper for the underlying fread() C function, and will behave the same in corner cases, such as whether the EOF value is cached.

文件。 readline ( [ size ] )

Read one entire line from the file. A trailing newline character is kept in the string (but may be absent when a file ends with an incomplete line). 6 size argument is present and non-negative, it is a maximum byte count (including the trailing newline) and an incomplete line may be returned. When size is not 0, an empty string is returned only when EOF is encountered immediately.

注意

不像 stdio ’s fgets() , the returned string contains null characters ( '\0' ) if they occurred in the input.

文件。 readlines ( [ sizehint ] )

Read until EOF using readline() and return a list containing the lines thus read. If the optional sizehint argument is present, instead of reading up to EOF, whole lines totalling approximately sizehint bytes (possibly after rounding up to an internal buffer size) are read. Objects implementing a file-like interface may choose to ignore sizehint if it cannot be implemented, or cannot be implemented efficiently.

文件。 xreadlines ( )

This method returns the same thing as iter(f) .

2.1 版新增。

从 2.3 版起弃用: 使用 for line in file 代替。

文件。 seek ( offset [ , whence ] )

Set the file’s current position, like stdio ’s fseek() whence 自变量可选且默认为 os.SEEK_SET or 0 (绝对文件位置);其它值 os.SEEK_CUR or 1 (寻址相对于当前位置) 和 os.SEEK_END or 2 (seek relative to the file’s end). There is no return value.

例如, f.seek(2, os.SEEK_CUR) advances the position by two and f.seek(-3, os.SEEK_END) sets the position to the third to last.

Note that if the file is opened for appending (mode 'a' or 'a+' ), any seek() operations will be undone at the next write. If the file is only opened for writing in append mode (mode 'a' ), this method is essentially a no-op, but it remains useful for files opened in append mode with reading enabled (mode 'a+' ). If the file is opened in text mode (without 'b' ), only offsets returned by tell() are legal. Use of other offsets causes undefined behavior.

Note that not all file objects are seekable.

2.6 版改变: Passing float values as offset has been deprecated.

文件。 tell ( )

Return the file’s current position, like stdio ’s ftell() .

注意

在 Windows, tell() can return illegal values (after an fgets() ) when reading files with Unix-style line-endings. Use binary mode ( 'rb' ) to circumvent this problem.

文件。 truncate ( [ size ] )

Truncate the file’s size. If the optional size argument is present, the file is truncated to (at most) that size. The size defaults to the current position. The current file position is not changed. Note that if a specified size exceeds the file’s current size, the result is platform-dependent: possibilities include that the file may remain unchanged, increase to the specified size as if zero-filled, or increase to the specified size with undefined new content. Availability: Windows, many Unix variants.

文件。 write ( str )

Write a string to the file. There is no return value. Due to buffering, the string may not actually show up in the file until the flush() or close() 方法被调用。

文件。 writelines ( sequence )

Write a sequence of strings to the file. The sequence can be any iterable object producing strings, typically a list of strings. There is no return value. (The name is intended to match readlines() ; writelines() does not add line separators.)

Files support the iterator protocol. Each iteration returns the same result as readline() , and iteration ends when the readline() method returns an empty string.

File objects also offer a number of other interesting attributes. These are not required for file-like objects, but should be implemented if they make sense for the particular object.

文件。 closed

bool indicating the current state of the file object. This is a read-only attribute; the close() method changes the value. It may not be available on all file-like objects.

文件。 encoding

The encoding that this file uses. When Unicode strings are written to a file, they will be converted to byte strings using this encoding. In addition, when the file is connected to a terminal, the attribute gives the encoding that the terminal is likely to use (that information might be incorrect if the user has misconfigured the terminal). The attribute is read-only and may not be present on all file-like objects. It may also be None , in which case the file uses the system default encoding for converting Unicode strings.

2.3 版新增。

文件。 errors

The Unicode error handler used along with the encoding.

2.6 版新增。

文件。 mode

The I/O mode for the file. If the file was created using the open() built-in function, this will be the value of the mode parameter. This is a read-only attribute and may not be present on all file-like objects.

文件。 名称

If the file object was created using open() , the name of the file. Otherwise, some string that indicates the source of the file object, of the form <...> . This is a read-only attribute and may not be present on all file-like objects.

文件。 newlines

If Python was built with 通用换行符 enabled (the default) this read-only attribute exists, and for files opened in universal newline read mode it keeps track of the types of newlines encountered while reading the file. The values it can take are '\r' , '\n' , '\r\n' , None (unknown, no newlines read yet) or a tuple containing all the newline types seen, to indicate that multiple newline conventions were encountered. For files not opened in universal newlines read mode the value of this attribute will be None .

文件。 softspace

Boolean that indicates whether a space character needs to be printed before another value when using the print statement. Classes that are trying to simulate a file object should also have a writable softspace attribute, which should be initialized to zero. This will be automatic for most classes implemented in Python (care may be needed for objects that override attribute access); types implemented in C will have to provide a writable softspace 属性。

注意

This attribute is not used to control the print statement, but to allow the implementation of print to keep track of its internal state.

5.10. memoryview 类型

2.7 版新增。

memoryview objects allow Python code to access the internal data of an object that supports the buffer protocol without copying. Memory is generally interpreted as simple bytes.

class memoryview ( obj )

创建 memoryview that references obj . obj must support the buffer protocol. Built-in objects that support the buffer protocol include str and bytearray (but not unicode ).

A memoryview has the notion of an element , which is the atomic memory unit handled by the originating object obj . For many simple types such as str and bytearray , an element is a single byte, but other third-party types may expose larger elements.

len(view) returns the total number of elements in the memoryview, view itemsize attribute will give you the number of bytes in a single element.

A memoryview supports slicing to expose its data. Taking a single index will return a single element as a str object. Full slicing will result in a subview:

>>> v = memoryview('abcefg')
>>> v[1]
'b'
>>> v[-1]
'g'
>>> v[1:4]
<memory at 0x77ab28>
>>> v[1:4].tobytes()
'bce'
									

If the object the memoryview is over supports changing its data, the memoryview supports slice assignment:

>>> data = bytearray('abcefg')
>>> v = memoryview(data)
>>> v.readonly
False
>>> v[0] = 'z'
>>> data
bytearray(b'zbcefg')
>>> v[1:4] = '123'
>>> data
bytearray(b'z123fg')
>>> v[2] = 'spam'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: cannot modify size of memoryview object
									

Notice how the size of the memoryview object cannot be changed.

memoryview has two methods:

tobytes ( )

Return the data in the buffer as a bytestring (an object of class str ).

>>> m = memoryview("abc")
>>> m.tobytes()
'abc'
											
tolist ( )

Return the data in the buffer as a list of integers.

>>> memoryview("abc").tolist()
[97, 98, 99]
											

还有几个可用只读属性:

format

A string containing the format (in struct module style) for each element in the view. This defaults to 'B' , a simple bytestring.

itemsize

The size in bytes of each element of the memoryview.

shape

A tuple of integers the length of ndim giving the shape of the memory as an N-dimensional array.

ndim

An integer indicating how many dimensions of a multi-dimensional array the memory represents.

strides

A tuple of integers the length of ndim giving the size in bytes to access each element for each dimension of the array.

readonly

A bool indicating whether the memory is read only.

5.11. 上下文管理器类型

2.5 版新增。

Python 的 with statement supports the concept of a runtime context defined by a context manager. This is implemented using two separate methods that allow user-defined classes to define a runtime context that is entered before the statement body is executed and exited when the statement ends.

The 上下文管理协议 consists of a pair of methods that need to be provided for a context manager object to define a runtime context:

contextmanager. __enter__ ( )

Enter the runtime context and return either this object or another object related to the runtime context. The value returned by this method is bound to the identifier in the as clause of with statements using this context manager.

An example of a context manager that returns itself is a file object. File objects return themselves from __enter__() to allow open() to be used as the context expression in a with 语句。

An example of a context manager that returns a related object is the one returned by decimal.localcontext() . These managers set the active decimal context to a copy of the original decimal context and then return the copy. This allows changes to be made to the current decimal context in the body of the with statement without affecting code outside the with 语句。

contextmanager. __exit__ ( exc_type , exc_val , exc_tb )

Exit the runtime context and return a Boolean flag indicating if any exception that occurred should be suppressed. If an exception occurred while executing the body of the with statement, the arguments contain the exception type, value and traceback information. Otherwise, all three arguments are None .

Returning a true value from this method will cause the with statement to suppress the exception and continue execution with the statement immediately following the with statement. Otherwise the exception continues propagating after this method has finished executing. Exceptions that occur during execution of this method will replace any exception that occurred in the body of the with 语句。

The exception passed in should never be reraised explicitly - instead, this method should return a false value to indicate that the method completed successfully and does not want to suppress the raised exception. This allows context management code (such as contextlib.nested ) to easily detect whether or not an __exit__() method has actually failed.

Python defines several context managers to support easy thread synchronisation, prompt closure of files or other objects, and simpler manipulation of the active decimal arithmetic context. The specific types are not treated specially beyond their implementation of the context management protocol. See the contextlib module for some examples.

Python 的 generator s and the contextlib.contextmanager 装饰器 provide a convenient way to implement these protocols. If a generator function is decorated with the contextlib.contextmanager decorator, it will return a context manager implementing the necessary __enter__() and __exit__() methods, rather than the iterator produced by an undecorated generator function.

Note that there is no specific slot for any of these methods in the type structure for Python objects in the Python/C API. Extension types wanting to define these methods must provide them as a normal Python accessible method. Compared to the overhead of setting up the runtime context, the overhead of a single class dictionary lookup is negligible.

5.12. 其它内置类型

解释器支持几种其它种类的对象。这些中的大多数只支持 1 种或 2 种操作。

5.12.1. 模块

模块的唯一特殊操作是属性访问: m.name ,其中 m 是模块和 name 访问定义名称在 m 的符号表。可以赋值模块属性 (注意, import 语句严格来说,并未运转于模块对象; import foo 不要求命名模块对象 foo 的存在,相反,它要求 (外部) definition 对于命名模块 foo 在其它地方)。

每个模块的特殊属性是 __dict__ 。这是包含模块符号表的字典。修改此字典实际上会改变模块的符号表,但直接赋值 __dict__ 属性是不可能的 (可以编写 m.__dict__['a'] = 1 ,其定义 m.a 1 ,但无法编写 m.__dict__ = {} )。修改 __dict__ 直接不推荐。

将模块内置进解释器的编写像这样: <module 'sys' (built-in)> 。若从文件加载,它们被写成 <module 'os' from '/usr/local/lib/pythonX.Y/os.pyc'> .

5.12.2. 类和类实例

对象、值及类型 and 类定义 对于这些。

5.12.3. 函数

Function objects are created by function definitions. The only operation on a function object is to call it: func(argument-list) .

There are really two flavors of function objects: built-in functions and user-defined functions. Both support the same operation (to call the function), but the implementation is different, hence the different object types.

函数定义 了解更多信息。

5.12.4. 方法

Methods are functions that are called using the attribute notation. There are two flavors: built-in methods (such as append() on lists) and class instance methods. Built-in methods are described with the types that support them.

The implementation adds two special read-only attributes to class instance methods: m.im_self is the object on which the method operates, and m.im_func is the function implementing the method. Calling m(arg-1, arg-2, ..., arg-n) is completely equivalent to calling m.im_func(m.im_self, arg-1, arg-2, ..., arg-n) .

Class instance methods are either bound or unbound , referring to whether the method was accessed through an instance or a class, respectively. When a method is unbound, its im_self 属性将是 None and if called, an explicit self object must be passed as the first argument. In this case, self must be an instance of the unbound method’s class (or a subclass of that class), otherwise a TypeError 被引发。

Like function objects, methods objects support getting arbitrary attributes. However, since method attributes are actually stored on the underlying function object ( meth.im_func ), setting method attributes on either bound or unbound methods is disallowed. Attempting to set an attribute on a method results in an AttributeError being raised. In order to set a method attribute, you need to explicitly set it on the underlying function object:

>>> class C:
...     def method(self):
...         pass
...
>>> c = C()
>>> c.method.whoami = 'my name is method'  # can't set on the method
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'instancemethod' object has no attribute 'whoami'
>>> c.method.im_func.whoami = 'my name is method'
>>> c.method.whoami
'my name is method'
							

标准类型层次结构 了解更多信息。

5.12.5. 代码对象

代码对象用于实现以表示 "伪编译" 可执行 Python 代码,譬如:函数本体。它们异于函数对象,因为它们不包含对其全局执行环境的引用。代码对象的返回是通过内置 compile() 函数且可以提取自函数对象透过它们的 func_code 属性。另请参阅 code 模块。

代码对象可以被执行或评估通过将它 (而不是源字符串) 传递给 exec statement or the built-in eval() 函数。

标准类型层次结构 了解更多信息。

5.12.6. 类型对象

Type objects represent the various object types. An object’s type is accessed by the built-in function type() . There are no special operations on types. The standard module types defines names for all standard built-in types.

类型写成像这样: <type 'int'> .

5.12.7. Null 对象

This object is returned by functions that don’t explicitly return a value. It supports no special operations. There is exactly one null object, named None (a built-in name).

它被写为 None .

5.12.8. 省略对象

This object is used by extended slice notation (see 切片 ). It supports no special operations. There is exactly one ellipsis object, named Ellipsis (a built-in name).

它被写为 Ellipsis . When in a subscript, it can also be written as ... ,例如 seq[...] .

5.12.9. 未实现对象

This object is returned from comparisons and binary operations when they are asked to operate on types they don’t support. See 比较 了解更多信息。

它被写为 NotImplemented .

5.12.10. 布尔值

Boolean values are the two constant objects False and True . They are used to represent truth values (although other values can also be considered false or true). In numeric contexts (for example when used as the argument to an arithmetic operator), they behave like the integers 0 and 1, respectively. The built-in function bool() can be used to convert any value to a Boolean, if the value can be interpreted as a truth value (see section 真值测试 above).

它们被写成 False and True ,分别。

5.12.11. 内部对象

标准类型层次结构 了解此信息。它描述堆栈帧对象、回溯对象及切片对象。

5.13. 特殊属性

实现将一些相关特殊只读属性添加到对象类型。其中一些不报告通过 dir() 内置函数。

对象。 __dict__

用于存储对象 (可写) 属性的字典或其它映射对象。

对象。 __methods__

Deprecated since version 2.2: 使用内置函数 dir() to get a list of an object’s attributes. This attribute is no longer available.

对象。 __members__

Deprecated since version 2.2: 使用内置函数 dir() to get a list of an object’s attributes. This attribute is no longer available.

instance. __class__

类实例所属的类。

class. __bases__

类对象的基类元组。

定义。 __name__

The name of the class, type, function, method, descriptor, or generator instance.

The following attributes are only supported by 新样式类 es.

class. __mro__

This attribute is a tuple of classes that are considered when looking for base classes during method resolution.

class. mro ( )

This method can be overridden by a metaclass to customize the method resolution order for its instances. It is called at class instantiation, and its result is stored in __mro__ .

class. __subclasses__ ( )

Each new-style class keeps a list of weak references to its immediate subclasses. This method returns a list of all those references still alive. Example:

>>> int.__subclasses__()
[<type 'bool'>]
									

脚注

1

Additional information on these special methods may be found in the Python Reference Manual ( 基本定制 ).

2

因此,列表 [1, 2] 被认为等于 [1.0, 2.0] ,且类似元组。

3

They must have since the parser can’t tell the type of the operands.

4 ( 1 , 2 , 3 , 4 )

Cased characters are those with general category property being one of “Lu” (Letter, uppercase), “Ll” (Letter, lowercase), or “Lt” (Letter, titlecase).

5

To format only a tuple you should therefore provide a singleton tuple whose only element is the tuple to be formatted.

6

The advantage of leaving the newline on is that returning an empty string is then an unambiguous EOF indication. It is also possible (in cases where it might matter, for example, if you want to make an exact copy of a file while scanning its lines) to tell whether the last line of a file ended in a newline or not (yes this happens!).