5. Tipos internos¶
As seções a seguir descrevem os tipos padrão que são incorporados ao interpretador.
Nota
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.
Some operations are supported by several object types; in particular,
practically all objects can be compared, tested for truth value, and converted
to a string (with the repr() function or the slightly different
str()
function). The latter function is implicitly used when an object is
written by the print()
function.
5.1. Teste do Valor Verdade¶
Qualquer objeto pode ser testado para seu valor verdade, para uso em uma condição :keyword:ìf`ou while
ou como operando para as operações Booleanas abaixo. Os seguintes valores são considerados falsos:
None
False
zero of any numeric type, for example,
0
,0L
,0.0
,0j
.qualquer sequência vazia, por exemplo,
''
,()
,[]
.qualquer mapeamento vazio, por exemplo,
{}
.instances of user-defined classes, if the class defines a
__nonzero__()
or__len__()
method, when that method returns the integer zero orbool
valueFalse
. 1
Todos os outros valores são considerados verdadeiros — então os objetos de muitos tipos são sempre verdadeiros.
Operações e funções embutidas que têm um resultado Booleano retornam 0
ou False
para falso e 1
ou True
para verdadeiro, salvo indicações ao contrário. (Exceção importante: as operações Booleanas or
e and
sempre retornam um de seus operandos.)
5.2. Operações Booleanas — and
, or
, not
¶
Esses são as operações Booleanas, ordenados por prioridade ascendente:
Operação |
Resultado |
Notas |
---|---|---|
|
se x é falso, então y, do contrário x |
(1) |
|
se x é falso, então x, do contrário y |
(2) |
|
se x é falso, então |
(3) |
Notas:
Esse é um operador de curto-circuito, sendo assim ele apenas avalia o segundo argumento se o primeiro é falso.
Este é um operador de curto-circuito, por isso só avalia o segundo argumento se o primeiro é verdadeiro.
not
tem uma baixa prioridade do que operadores não-Booleanos, entãonot a == b
é interpretado comonot (a == b)
, ea == not b
é um erro de sintaxe.
5.3. Comparações¶
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
is equivalent to x < y and
y <= z
, except that y is evaluated only once (but in both cases z is not
evaluated at all when x < y
is found to be false).
Esta tabela resume as operações de comparação:
Operação |
Significado |
Notas |
---|---|---|
|
estritamente menor que |
|
|
menor do que ou igual |
|
|
estritamente maior que |
|
|
maior que ou igual |
|
|
igual |
|
|
não é igual |
(1) |
|
identidade do objeto |
|
|
identidade de objeto negada |
Notas:
!=
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 >=
operators will raise a 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__()
method.
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__()
, and
__ge__()
) or the __cmp__()
method.
CPython implementation detail: 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.
Two more operations with the same syntactic priority, in
and not in
, are
supported only by sequence types (below).
5.4. Numeric Types — int
, float
, long
, complex
¶
There are four distinct numeric types: plain integers, long
integers, floating point numbers, and complex numbers. 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, use z.real
and z.imag
. (The standard library includes additional
numeric types, fractions
that hold rationals, and 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 The constructors int()
,
long()
, float()
, and complex()
can be used to produce numbers
of a specific type.
All built-in numeric types support the following operations. See The power operator and later sections for the operators’ priorities.
Operação |
Resultado |
Notas |
---|---|---|
|
soma de x e y |
|
|
diferença de * x * e * y * |
|
|
produto de * x * e * y * |
|
|
quociente de x e y |
(1) |
|
(floored) quotient of x and y |
(4)(5) |
|
restante de |
(4) |
|
x negado |
|
|
x inalterado |
|
|
valor absoluto ou magnitude de x |
(3) |
|
x convertido em inteiro |
(2) |
|
x converted to long integer |
(2) |
|
x convertido em ponto flutuante |
(6) |
|
um número complexo com parte real re, parte imaginária im. im acarreta em zero. |
|
|
conjugate of the complex number c. (Identity on real numbers) |
|
|
o par |
(3)(4) |
|
x elevado a y |
(3)(7) |
|
x elevado a y |
(7) |
Notas:
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.
Conversion from floats using
int()
orlong()
truncates toward zero like the related function,math.trunc()
. Use the functionmath.floor()
to round downward andmath.ceil()
to round upward.See Funções Built-in for a full description.
Also referred to as integer division. The resultant value is a whole integer, though the result’s type is not necessarily int.
ponto flutuante também aceita a string “nan” e “inf” com um prefixo opcional “+” ou “-” para Não é um Número (NaN) e infinidade positiva ou negativa.
Novo na versão 2.6.
Python define
pow(0, 0)
e0 ** 0
sendo1
, como é comum para linguagens de programação.
All numbers.Real
types (int
, long
, and
float
) also include the following operations:
Operação |
Resultado |
---|---|
x truncated to |
|
:func:`round(x[, n]) 1`<round> |
x rounded to n digits, rounding ties away from zero. If n is omitted, it defaults to 0. |
the greatest integer as a float <= x |
|
the least integer as a float >= x |
5.4.1. Operações de bits em tipos inteiros¶
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).
As prioridades das operações bitwise binárias são todas menores do que as operações numéricas e maiores que as comparações; a operação unária ~
tem a mesma prioridade que as outras operações numéricas unárias (+
e -
).
Esta tabela lista as operações de bits classificadas em prioridade ascendente:
Operação |
Resultado |
Notas |
---|---|---|
|
bitwise or de x e y |
|
|
bitwise exclusive or de x e y |
|
|
bitwise and de x e y |
|
|
x deslocado para a esquerda pelos bits n |
(1)(2) |
|
x deslocado para a direita pelos bits n |
(1)(3) |
|
os bits de x invertidos |
Notas:
Contagens de deslocamento negativo são ilegais e causam o acionamento de um
ValueError
.A left shift by n bits is equivalent to multiplication by
pow(2, n)
. A long integer is returned if the result exceeds the range of plain integers.A right shift by n bits is equivalent to division by
pow(2, n)
.
5.4.2. Métodos adicionais em tipos inteiros¶
The integer types implement the numbers.Integral
abstract base
class. In addition, they provide one more method:
-
int.
bit_length
()¶
-
long.
bit_length
()¶ Retornar o número de bits necessários para representar um inteiro em binário, excluindo o sinal e entrelinha zeros:
>>> n = -37 >>> bin(n) '-0b100101' >>> n.bit_length() 6
Mais precisamente, se
x
for diferente de zero, entãox.bit_length()` é o único integral positivo ``k
tal que2**(k-1) <= abs(x) <2**k
. Equvalentemente, quandoabs(x)
for menor o suficiente para ter um arredondamento algorítmicamente correto, entãok=1 + int(log(abs(x),2))
. Sex
é zero, entãox.bit_length()
retorna0
.Equivalente a:
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
Novo na versão 2.7.
5.4.3. Métodos Adicionais em Ponto Flutuante¶
O tipo float implementa numbers.Real
abstract base class. float também possui os seguintes métodos adicionais.
-
float.
as_integer_ratio
()¶ Retorna um par de inteiros dos quais a proporção é exatamente igual ao float original e com um denominador positivo. Levanta um
OverflowError
em infinidades e umValueError
em NaNs.Novo na versão 2.6.
-
float.
is_integer
()¶ Retornar `` True`` se a instância do float for finita com o valor integral e `` False``, caso contrário:
>>> (-2.0).is_integer() True >>> (3.2).is_integer() False
Novo na versão 2.6.
Dois métodos suportam conversão para e de cadeias hexadecimais. Uma vez que os flutuadores do Python são armazenados internamente como números binários, a conversão de um flutuador para ou de uma seqüência decimal geralmente envolve um pequeno erro de arredondamento. Em contraste, as frases hexadecimais permitem a representação exata e a especificação de números de ponto flutuante. Isso pode ser útil na depuração e no trabalho numérico.
-
float.
hex
()¶ Retorna a representação de um número de ponto-flutuante como uma string hexadecimal. Para números de ponto-flutuante finitos, essa representação vai sempre incluir um
0x
inicial e ump
final e expoente.Novo na versão 2.6.
-
float.
fromhex
(s)¶ Método de classe para retornar um float representado por uma string hexadecimal s. A string s pode ter espaços em branco iniciais e finais.
Novo na versão 2.6.
Note que float.hex()
é um método de instância, enquanto float.fromhex()
é um método de classe.
Uma string hexadecimal toma a forma:
[sign] ['0x'] integer ['.' fraction] ['p' exponent]
aonde o sinal sign
opcional pode ser tanto +
or -
, integer
e fraction
são strings de dígitos hexadecimais, e exponent
é um inteiro decimal com um símbolo precedente opcional. Case não é significante, e deve haver ao menos um dígito hexadecimal tanto no inteiro ou na fração. Essa síntaxe é similar à síntaxe especificada na seção 6.4.4.2 do padrão C99, e também do da síntaxe usada no Java 1.5 em diante. Em particular, a saída de float.hex()
é usável como um literal hexadecimal de ponto-flutuante em código C ou Java, e hexadecimal strings produzidas pelo formato do caráctere do C’s %a``ou ``Double.toHexString
do Java são aceitos pelo float.fromhex()
.
Note que o expoente é escrito em decimal ao invés de hexadecimal, e que ele dá a potência de 2 pela qual se multiplica o coeficiente. Por exemplo, a string hexadecimal 0x3.a7p10
representa o número de ponto-flutuante (3 + 10./16 + 7./16**2) * 2.0**10
, ou 3740.0
:
>>> float.fromhex('0x3.a7p10')
3740.0
Aplicando a conversão reversa a 3740.0
retorna uma string hexadecimal diferente representada pelo mesmo número:
>>> float.hex(3740.0)
'0x1.d380000000000p+11'
5.5. Tipos de Iteração¶
Novo na versão 2.2.
Python suporta o conceito de iteração sobre conteineres. Isso é implementado usando dois métodos distintos; estes são usados para permitir classes definidas pelo usuário suportem iteração. Sequências, descritas abaixo em mais detalhes, sempre suportam os métodos de iteração.
Um método necessita ser definido para objetos conteineres afim destes proverem suporte a iteração:
-
container.
__iter__
()¶ Retorna um objeto iterador. O objeto é requerido suportar o protocolo iterador descrito abaixo. Se um conteiner suporta diferentes tipos de iterador, métodos adicionais podem ser providenciados para requisitar especificamente iteradores para aqueles tipos de iterações.
Os objetos iterator por eles mesmos são requeridos que suportem os dois seguintes métodos, que juntos formam o iterator protocol:
-
iterator.
__iter__
()¶ Retorna o próprio iterator object. Isso é necessário para permitir que ambos os conteineres e iteradores sejam usados com as declarações
for
ein
. Esse method corresponde ao slottp_iter
da estrutura type para objetos do Python na API Python/C.
-
iterator.
next
()¶ Retorna o próximo item do conteiner. Se não houver itens além, a exceção
StopIteration
é levantada. Esse method corresponde ao slottp_iternext
do type de estrutura para objetos Python na API Python/C.
Python define diversos objetos iterator para suportar iterações sobre tipos de sequências gerais e específicas, dicionários, e outras formas mais especializadas. Os tipos específicos não são importantes além de sua implementação do protocolo iterator.
The intention of the protocol is that once an iterator’s next()
method
raises 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. Tipos de Geradores¶
Python’s generators 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. Sequence Types — 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
classes,
and the collections
module.
String literals are written in single or double quotes: 'xyzzy'
,
"frobozz"
. See String literals 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 Métodos de String 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 Tipos de Sequências Mutáveis.
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:
Operação |
Resultado |
Notas |
---|---|---|
|
|
(1) |
|
|
(1) |
|
a concatenão de s e t |
(6) |
|
equivalente a adicionar s a si mesmo n vezes |
(2) |
|
ienésimo item de s, origem 0 |
(3) |
|
fatia de s desde i para j |
(3)(4) |
|
fatia de s desde i para j com passo k |
(3)(5) |
|
comprimento de s |
|
|
menor item de s |
|
|
maior item de s |
|
|
index of the first occurrence of x in s |
|
|
numero total de ocorrência de x em 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 Comparações in the language reference.)
Notas:
When s is a string or Unicode string object the
in
andnot 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.Values of n less than
0
are treated as0
(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 oflists
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]]
Outra explicação está disponível em FAQ Como faço para criar uma lista multidimensional?.
Se i ou j forem negativo, o índice será relativo ao fim da seqüência s: `` len(s) + i`` ou
len(s) + j
será substituído. Mas note que-0
ainda será0
.A fatia s de i para j é definida como a seqüência de itens com índice k tal que
i <= k <j
. Se i ou j forem maior do quelen(s)
, uselen(s)
. Se i for omitido ou for igual aNone
, use0
. Se j for omitido ouNone
, uselen(s)
. Se i for maior ou igual a j, a fatia está vazia.A fatia s de i para j com passo k é definida como sendo a seqüência de itens com índice
x = i + n * k
tal que0 <= n <(j-i)/k
. Em outras palavras, os índices sãoi
,i+k
,i+2*k
,i+3*k
e assim por diante, parando quando j for atingiu (mas nunca incluindo j). Quando k for positivo, i e j serão reduzidos alen(s)
se forem maiores. Quando k for negativo, i e j são reduzidos paralen(s)-1
se forem maiores. Se i ou j forem omitidos ou `` None`, eles se tornam valores “finais” (cujo final depende de k). Nota: k não pode ser zero. Se k forNone
, o mesmo será tratado como sendo igual a1`
.CPython implementation detail: If 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
ors += 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 thestr.join()
method which assures consistent linear concatenation performance across versions and implementations.Alterado na versão 2.4: Formerly, string concatenation never occurred in-place.
5.6.1. Métodos de String¶
Below are listed the string methods which both 8-bit strings and
Unicode objects support. Some of them are also available on bytearray
objects.
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
String Formatting Operations section. Also, see the re
module for
string functions based on regular expressions.
-
str.
capitalize
()¶ Retorna uma cópia da String com o seu primeiro caractere em maiúsculo e o restantes em minúsculo.
For 8-bit strings, this method is locale-dependent.
-
str.
center
(width[, fillchar])¶ Return centered in a string of length width. Padding is done using the specified fillchar (default is a space).
Alterado na versão 2.4: Support for the fillchar argument.
-
str.
count
(sub[, start[, end]])¶ Retorna o número de ocorrências da sub-string sub que não se sobrepõem no intervalo [start, end]. Argumentos opcionais start e end são interpretados como na notação de fatias.
-
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 raiseUnicodeError
. Other possible values are'ignore'
,'replace'
and any other name registered viacodecs.register_error()
, see section Codec Base Classes.Novo na versão 2.2.
Alterado na versão 2.3: Support for other error handling schemes added.
Alterado na versão 2.7: Suporte para argumentos que possuem keyword adicionados.
-
str.
encode
([encoding[, errors]])¶ Return an encoded version of the string. Default encoding is the current default string encoding. errors may be given to set a different error handling scheme. The default for errors is
'strict'
, meaning that encoding errors raise aUnicodeError
. Other possible values are'ignore'
,'replace'
,'xmlcharrefreplace'
,'backslashreplace'
and any other name registered viacodecs.register_error()
, see section Codec Base Classes. For a list of possible encodings, see section Standard Encodings.Novo na versão 2.0.
Alterado na versão 2.3: Support for
'xmlcharrefreplace'
and'backslashreplace'
and other error handling schemes added.Alterado na versão 2.7: Suporte para argumentos que possuem keyword adicionados.
-
str.
endswith
(suffix[, start[, end]])¶ Retorna
True
se a string terminar com o suffix especificado, caso contrário retornaFalse
. suffix também pode ser uma tupla de sufixos para procurar. Com o parâmetro opcional start, começamos a testart a partir daquela posição. Com o parâmetro opcional end, devemos parar de comparar na posição especificada.Alterado na versão 2.5: Accept tuples as suffix.
-
str.
expandtabs
([tabsize])¶ Devolve uma cópia da string onde todos os caracteres de tabulação são substituídos por um ou mais espaços, dependendo da coluna atual e do tamanho fornecido para a tabulação. Posições de tabulação ocorrem a cada tabsize caracteres (o padrão é 8, dada as posições de tabulação nas colunas 0, 8, 16 e assim por diante). Para expandir a string, a coluna atual é definida como zero e a string é examinada caracter por caracter. Se o caracter é uma tabulação (
\t
), um ou mais caracteres de espaço são inseridos no resultado até que a coluna atual seja igual a próxima posição de tabulação. (O caracter de tabulação em si não é copiado.) Se o caracter é um caracter de nova linha (\n
) ou de retorno (\r
), ele é copiado e a coluna atual é resetada para zero. Qualquer outro caracter é copiado sem ser modificado e a coluna atual é incrementada em uma unidate independentemente de como o caracter é representado quanto é impresso.>>> '01\t012\t0123\t01234'.expandtabs() '01 012 0123 01234' >>> '01\t012\t0123\t01234'.expandtabs(4) '01 012 0123 01234'
-
str.
find
(sub[, start[, end]])¶ Retorna o índice mais baixo na String onde a substring sub é encontrado dentro da fatia
s[start:end]
. Argumntos opcionais como start e end são interpretados como umanotação de fatiamento. Retorna-1
se sub não for localizado.
-
str.
format
(*args, **kwargs)¶ Executa uma operação de formatação de string. A string na qual este método é chamado pode conter texto literal ou campos para substituição delimitados por chaves
{}
. Cada campo de substituição contém ou um índice numérico de um argumento posicional, ou o nome de um argumento palavra-chave. Retorna a cópia da string onde cada campo para substituição é substituído com o valor da string do argumento correspondente.>>> "The sum of 1 + 2 is {0}".format(1+2) 'The sum of 1 + 2 is 3'
Veja Format String Syntax para uma descrição das várias opções de formatação que podem ser especificadas em um formato Strings.
This method of string formatting is the new standard in Python 3, and should be preferred to the
%
formatting described in String Formatting Operations in new code.Novo na versão 2.6.
-
str.
index
(sub[, start[, end]])¶ Like
find()
, but raiseValueError
when the substring is not found.
-
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])¶ Return the string left justified in a string of length width. Padding is done using the specified fillchar (default is a space). The original string is returned if width is less than or equal to
len(s)
.Alterado na versão 2.4: Support for the fillchar argument.
-
str.
lower
()¶ Retorna uma cópia da string com todos os caracteres que permitem maiúsculo E minúsculo 4 convertidos para letras minúsculas.
For 8-bit strings, this method is locale-dependent.
-
str.
lstrip
([chars])¶ Return a copy of the string with leading characters removed. The chars argument is a string specifying the set of characters to be removed. If omitted or
None
, the chars argument defaults to removing whitespace. The chars argument is not a prefix; rather, all combinations of its values are stripped:>>> ' spacious '.lstrip() 'spacious ' >>> 'www.example.com'.lstrip('cmowz.') 'example.com'
Alterado na versão 2.2.2: Support for the chars argument.
-
str.
partition
(sep)¶ Quebra a string na primeira ocorrência de sep, e retorna uma tupla com 3 elementos contendo a parte antes do separador, o próprio separator, e a parte após o separador. Se o separador não for encontrado, retorna uma tupla com 3 elementos contendo a string, seguido de duas strings vazias.
Novo na versão 2.5.
-
str.
replace
(old, new[, count])¶ Retorna uma cópia da string com todas as ocorrências da substring old substituídas por new. Se o argumento opcional count é fornecido, apenas as primeiras count ocorrências são substituídas.
-
str.
rfind
(sub[, start[, end]])¶ Retorna o maior índice onde a substring sub foi encontrada dentro da string, onde sub está contida dentro do intervalo
s[start:end]
. Argumentos opcionais start e end são interpretados usando a notação slice. Retorna-1
em caso de falha.
-
str.
rindex
(sub[, start[, end]])¶ Similar a
rfind()
mas levanta umValueError
quando a substring sub não é encontrada.
-
str.
rjust
(width[, fillchar])¶ Return the string right justified in a string of length width. Padding is done using the specified fillchar (default is a space). The original string is returned if width is less than or equal to
len(s)
.Alterado na versão 2.4: Support for the fillchar argument.
-
str.
rpartition
(sep)¶ Quebra a string na última ocorrência de sep, e retorna uma tupla com 3 elementos contendo a parte antes do separador, o próprio separator, e a parte após o separador. Se o separador não for encontrado, retorna uma tupla com 3 elementos contendo duas strings vazias, seguido da própria string original.
Novo na versão 2.5.
-
str.
rsplit
([sep[, maxsplit]])¶ Retorna uma lista de palavras na string, usando sep como a string delimitadora. Se maxsplit é fornecido, no máximo maxsplit cortes são feitos, sendo estes mais à direita. Se sep não foi especificado ou
None
foi informado, qualquer string de espaço em branco é um separador. Exceto pelo fato de separar pela direita,rsplit()
se comporta comosplit()
, o qual é descrito em detalhes abaixo.Novo na versão 2.4.
-
str.
rstrip
([chars])¶ Return a copy of the string with trailing characters removed. The chars argument is a string specifying the set of characters to be removed. If omitted or
None
, the chars argument defaults to removing whitespace. The chars argument is not a suffix; rather, all combinations of its values are stripped:>>> ' spacious '.rstrip() ' spacious' >>> 'mississippi'.rstrip('ipz') 'mississ'
Alterado na versão 2.2.2: Support for the chars argument.
-
str.
split
([sep[, maxsplit]])¶ Retorna uma lista de palavras na string, usando sep como a string delimitadora. Se maxsplit é fornecido, no máximo maxsplit cortes são feitos (portando, a lista terá no máximo
maxsplit+1
elementos). Se maxsplit não foi especificado ou-1
foi informado, então não existe limite no número de cortes (todos os cortes possíveis são realizados).Se sep é fornecido, delimitadores consecutivos não são agrupados juntos e eles são destinados para delimitar strings vazias (por exemplo
'1,,2'.split(',')
retorna['1', '', '2']
). O argumento sep pode consistir de múltiplos caracteres (por exemplo,'1<>2<>3'.split('<>')
retorna['1', '2', '3']
). Separar uma string vazia com um separador especificado retorna['']
.Se sep não for especificado ou for
None
, um algoritmo diferente de separação é aplicado: ocorrências consecutivas de espaços em branco são consideradas como um separador único, e o resultado não conterá strings vazias no início ou no final, se a string tiver espaços em branco no início ou no final. Consequentemente, separar uma string vazia ou uma string que consiste apenas de espaços em branco com o separadorNone
, retorna[]
.For example,
' 1 2 3 '.split()
returns['1', '2', '3']
, and' 1 2 3 '.split(None, 1)
returns['1', '2 3 ']
.
-
str.
splitlines
([keepends])¶ Return a list of the lines in the string, breaking at line boundaries. This method uses the universal newlines approach to splitting lines. Line breaks are not included in the resulting list unless keepends is given and true.
Python recognizes
"\r"
,"\n"
, and"\r\n"
as line boundaries for 8-bit strings.Por exemplo:
>>> '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']
Ao contrário do método
split()
quando um delimitador de String sep é fornecido, este método retorna uma lista vazia para a uma String vazia e uma quebra de linha de terminal não resulta numa linha extra:>>> "".splitlines() [] >>> "One line\n".splitlines() ['One line']
Para comparação, temos
split('\n')
:>>> ''.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 universal newlines recognized for 8-bit strings.Representação
Descrição
\n
Feed de linha
\r
Retorno de Carro
\r\n
Retorno do Carro + Feed da Linha
\v
ou\x0b
Tabulação de Linha
\f
ou\x0c
Formulário de Feed
\x1c
Separador de Arquivos
\x1d
Separador de Grupo
\x1e
Separador de Registro
\x85
Próxima Linha (C1 Control Code)
\u2028
Separador de Linha
\u2029
Parágrafo Separador
Alterado na versão 2.7:
\v
e\f
adicionado à lista de limites de linha.
-
str.
startswith
(prefix[, start[, end]])¶ Retorne
True
se a String começar com o prefixo, caso contrário, retornaFalse
. prefixo também pode ser uma tupla de prefixos a serem procurados. Com start opcional, a String de teste começa nessa posição. Com fim opcional, interrompe a comparação de String nessa posição.Alterado na versão 2.5: Accept tuples as prefix.
-
str.
strip
([chars])¶ Return a copy of the string with the leading and trailing characters removed. The chars argument is a string specifying the set of characters to be removed. If omitted or
None
, the chars argument defaults to removing whitespace. The chars argument is not a prefix or suffix; rather, all combinations of its values are stripped:>>> ' spacious '.strip() 'spacious' >>> 'www.example.com'.strip('cmowz.') 'example'
Alterado na versão 2.2.2: Support for the chars argument.
-
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
()¶ Retorna uma versão titlecased da string, onde palavras iniciam com um caractere com letra maiúscula e os caracteres restantes são em letras minúsculas.
O algoritmo usa uma definição simples independente de idioma para uma palavra, como grupos de letras consecutivas. A definição funciona em muitos contextos, mas isso significa que apóstrofes em contradições e possessivos formam limites de palavras, os quais podem não ser o resultado desejado:
>>> "they're bill's friends from the UK".title() "They'Re Bill'S Friends From The Uk"
Uma solução alternativa para os apóstrofes pode ser construída usando expressões regulares:
>>> 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.
You can use the
maketrans()
helper function in thestring
module to create a translation table. For string objects, set the table argument toNone
for translations that only delete characters:>>> 'read this short text'.translate(None, 'aeiou') 'rd ths shrt txt'
Novo na versão 2.6: Support for a
None
table argument.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 orNone
. Unmapped characters are left untouched. Characters mapped toNone
are deleted. Note, a more flexible approach is to create a custom character mapping codec using thecodecs
module (seeencodings.cp1251
for an example).
-
str.
upper
()¶ Retorna uma cópia da string com todos os caracteres que permitem maiúsculo e minúsculo 4 convertidos para letras maiúsculas. Perceba que
s.upper().isupper()
pode serFalse
ses
contiver caracteres que não possuem maiúsculas e minúsculas, ou se a categoria Unicode do(s) caractere(s) resultante(s) não for “Lu” (Letra maiúscula), mas por ex “Lt” (Letra em 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 is less than or equal to
len(s)
.Novo na versão 2.2.2.
The following methods are present only on unicode objects:
-
unicode.
isnumeric
()¶ Return
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
()¶ Return
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 Formatting Operations¶
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
(where format is a string
or Unicode object), %
conversion specifications in format are replaced
with zero or more elements of values. 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.
Se format precisar de um único operador, valores podem ser objetos simples ou que não sejam uma tupla. 5 Caso contrário, valores precisarão ser uma tupla com exatamente o número de itens especificados pela string de formatação, ou um único mapa de objetos (por exemplo, um dicionário).
Um especificador de conversão contém dois ou mais caracteres e tem os seguintes componentes, que devem aparecer nesta ordem:
O caractere
'%'
, que determina o início do especificador.Mapeamento de Chaves (opcional), consistindo de uma sequência entre parênteses de caracteres (por exemplo,
(algumnome)
).Flags de conversão (opcional), que afetam o resultado de alguns tipos de conversão.
Largura mínima do Campo(opcional). Se for especificado por
'*'
(asterisco), a largura real será lida a partir do próximo elemento da tupla em values e o objeto a converter virá após a largura mínima do campo e a precisão que é opcional.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 values, and the value to convert comes after the precision.Modificador de Comprimento(opcional).
Tipos de Conversão
Quando o argumento certo for um dicionário (ou outro tipo de mapeamento), então os formatos na string deverão incluir uma chave de mapeamento entre parênteses nesse dicionário inserido imediatamente após o caractere '%'
. A key de mapeamento seleciona o valor a ser formatado a partir do mapeamento. Por exemplo:
>>> print '%(language)s has %(number)03d quote types.' % \
... {"language": "Python", "number": 2}
Python has 002 quote types.
Nesse caso, nenhum especificador *
poderá ocorrer num formato (uma vez que eles exigem uma lista de parâmetros sequenciais).
Os caracteres flags de conversão são:
Flag |
Significado |
---|---|
|
A conversão de valor usará o “formulário alternativo” (em que definimos abaixo). |
|
A conversão será preenchida por zeros para valores numéricos. |
|
O valor convertido será ajustado à esquerda (substitui a conversão |
|
(um espaço) Um espaço em branco deverá ser deixado antes de um número positivo (ou uma String vazia) produzido por uma conversão assinada. |
|
Um sinal de caractere ( |
Um modificador de comprimento (h
, l
, ou L
) pode estar presente, mas será ignorado, pois o mesmo não é necessário para o Python – então por exemplo %ld
é idêntico a %d
.
Os tipos de conversão são:
Conversão |
Significado |
Notas |
---|---|---|
|
Número decimal inteiro sinalizador. |
|
|
Número decimal inteiro sinalizador. |
|
|
Valor octal sinalizador. |
(1) |
|
Tipo obsoleto - é idêntico a |
(7) |
|
Sinalizador hexadecimal (minúsculas). |
(2) |
|
Sinalizador hexadecimal (maiúscula). |
(2) |
|
Formato exponencial de ponto flutuante (minúsculas). |
(3) |
|
Floating point exponential format (uppercase). |
(3) |
|
Formato decimal de ponto flutuante. |
(3) |
|
Formato decimal de ponto flutuante. |
(3) |
|
O formato de ponto flutuante. Usa o formato exponencial em minúsculas se o expoente for inferior a -4 ou não inferior a precisão, formato decimal, caso contrário. |
(4) |
|
Formato de ponto flutuante. Usa o formato exponencial em maiúsculas se o expoente for inferior a -4 ou não inferior que a precisão, formato decimal, caso contrário. |
(4) |
|
Caráter único (aceita inteiro ou um único caractere String). |
|
|
String (converts any Python object using repr()). |
(5) |
|
String (converte qualquer objeto Python usando a função |
(6) |
|
Nenhum argumento é convertido, resultando um caractere |
Notas:
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.O formato alternativo produz um
'0x'
ou'0X'
(dependendo se o formato'x'
or'X'
foi usado) para ser inserido antes do primeiro dígito.A forma alternativa faz com que o resultado sempre contenha um ponto decimal, mesmo que nenhum dígito o siga.
A precisão determina o número de dígitos após o ponto decimal e o padrão é 6.
A forma alternativa faz com que o resultado sempre contenha um ponto decimal e os zeros à direita não sejam removidos, como de outra forma seriam.
A precisão determina o número de dígitos significativos antes e depois do ponto decimal e o padrão é 6.
The
%r
conversion was added in Python 2.0.The precision determines the maximal number of characters used.
If the object or format provided is a
unicode
string, the resulting string will also beunicode
.The precision determines the maximal number of characters used.
Veja PEP 237.
Como as Strings do Python possuem comprimento explícito, %s
as conversões não assumem que '\0'
é o fim da string.
Alterado na versão 2.7: %f
as conversões para números cujo valor absoluto é superior a 1e50 não são mais substituídas pela conversão %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()
function.
5.6.4. Tipos de Sequências Mutáveis¶
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):
Operação |
Resultado |
Notas |
---|---|---|
|
item i de s é substituído por x |
|
|
fatias de s de i para j são substituídas pelo conteúdo do iterável t |
|
|
o mesmo que |
|
|
os elementos de |
(1) |
|
remove os elementos de |
|
|
same as |
(2) |
|
for the most part the same as
|
(3) |
|
atualiza s com o seu conteúdo por n vezes |
(11) |
|
return number of i’s for
which |
|
|
return smallest k such that
|
(4) |
|
same as |
(5) |
|
same as |
(6) |
|
same as |
(4) |
|
inverte os itens de s no lugar |
(7) |
|
sort the items of s in place |
(7)(8)(9)(10) |
Notas:
t must have the same length as the slice it is replacing.
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.
t can be any iterable object.
Raises
ValueError
when x is not found in s. When a negative index is passed as the second or third parameter to theindex()
method, the list length is added, as for slice indices. If it is still negative, it is truncated to zero, as for slice indices.Alterado na versão 2.3: Previously,
index()
didn’t have arguments for specifying start and stop positions.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.Alterado na versão 2.3: Previously, all negative indices were truncated to zero.
The
pop()
method’s optional argument i defaults to-1
, so that by default the last item is removed and returned.The
sort()
andreverse()
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.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())
. The default value isNone
.key specifies a function of one argument that is used to extract a comparison key from each list element:
key=str.lower
. The default value isNone
.reverse é um valor booleano. Se definido igual a
True
, então os elementos da lista são classificados como se cada comparação fosse reversa.In general, the 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()
to convert an old-style cmp function to a key function.Alterado na versão 2.3: Support for
None
as an equivalent to omitting cmp was added.Alterado na versão 2.4: Support for key and reverse was added.
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).CPython implementation detail: 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.The value 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 fors * n
under Sequence Types — str, unicode, list, tuple, bytearray, buffer, xrange.
5.7. Tipo Set — set
, frozenset
¶
A set object is an unordered collection of distinct 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
,
and tuple
classes, and the collections
module.)
Novo na versão 2.4.
Assim como outras coleções, sets suportam x in set
, len(set)
, e for x in set
. Sendo uma coleção não ordenada, sets não armazenam posição de elementos ou ordem de inserção. Portanto, sets não suportam indexação, slicing, ou outros comportamentos similares de sequências.
Existem atualmente dois tipos de set embutidos, set
e frozenset
. O tipo set
é mutável — o conteúdo pode ser alterado usando métodos como add()
e remove()
. Como ele é mutável, ele não tem valor hash e não pode ser usado como chave de dicionário ou um elemento de um outro set. O tipo frozenset
é imutável e hasheável — seu conteúdo não pode ser alterado depois de ter sido criado; ele pode então ser usado como chave de dicionário ou como um elemento de outro 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
constructor.
Os construtores de ambas as classes funcionam da mesma forma:
-
class
set
([iterable])¶ -
class
frozenset
([iterable])¶ Retorna um novo objeto set ou frozenset, cujos elementos são obtidos a partir de um iterable. Os elementos de um set devem ser hasheável. Para representar sets de sets, os sets internos devem ser objetos
frozenset
. Se iterable não for especificado, um novo set vazio é retornado.Instâncias de
set
efrozenset
fornecem as seguintes operações:-
len(s)
Retorna o número de elementos no set s (cardinalidade de s).
-
x in s
Testa se x pertence a s.
-
x not in s
Testa se x não pertence a s.
-
isdisjoint
(other)¶ Retorna
True
se o set não tem elementos em comum com other. Sets são deslocados (disjoint) se e somente se a sua interseção é o conjunto vazio.Novo na versão 2.6.
-
issubset
(other)¶ -
set <= other
Testa se cada elemento do set está contido em other.
-
set < other
Testa se o set é um subconjunto próprio de other, isto é,
set <= other and set != other
.
-
issuperset
(other)¶ -
set >= other
Testa se cada elemento em other está contido no set.
-
set > other
Testa se o set é um superconjunto próprio de other, isto é,
set >= other and set != other
.
-
union
(*others)¶ -
set | other | ...
Retorna um novo set com elementos do set e de todos que estão em others.
Alterado na versão 2.6: Accepts multiple input iterables.
-
intersection
(*others)¶ -
set & other & ...
Retorna um novo set com elementos comuns ao set e todos que estão em others.
Alterado na versão 2.6: Accepts multiple input iterables.
-
difference
(*others)¶ -
set - other - ...
Retorna um novo set com elementos no set que não estão em others.
Alterado na versão 2.6: Accepts multiple input iterables.
-
symmetric_difference
(other)¶ -
set ^ other
Retorna um novo set com elementos estejam ou no set ou em other, mas não em ambos.
-
copy
()¶ Retorna uma cópia rasa do set.
Perceba que, as versões não-operador dos métodos
union()
,intersection()
,difference()
, esymmetric_difference()
,issubset()
, eissuperset()
irão aceitar qualquer iterável como um argumento. Em contraste, suas contrapartes baseadas em operadores exigem que seus argumentos sejam conjuntos. Isso impede construções sucetíveis a erros comoset('abc') & 'cbs'
e favorece a forma mais legívelset('abc').intersection('cbs')
.Tanto
set
quantofrozenset
suportam comparar um set contra outro set. Dois sets são iguais se e somente se, cada elemento de cada set está contido no outro set (cada um é um subconjunto do outro). Um set é menor que outro set se e somente se, o primeiro set é um subconjunto próprio do segundo set (é um subconjunto, mas não é igual). Um set é maior que outro set se e somente se, o primeiro set é um superconjunto próprio do segundo set (é um superconjunto, mas não é igual).Instâncias de
set
são comparadas a instâncias defrozenset
baseados nos seus membros. Por exemplo,set('abc') == frozenset('abc')
retornaTrue
e assim comoset('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
, ora>b
. Accordingly, sets do not implement the__cmp__()
method.Como sets apenas definem ordenamento parcial (subset de relacionamentos), a saída do método
list.sort()
é indefinida para listas e sets.Elementos set, assim como chaves de dicionário, devem ser hasheáveis.
Operações binárias que misturam instâncias de
set
comfrozenset
retornam o tipo do primeiro operando. Por exemplo:frozenset('ab') | set('bc')
retorna uma instância defrozenset
.A seguinte tabela lista operações disponíveis para
set
que não se aplicam para instâncias imutáveis defrozenset
:-
update
(*others)¶ -
set |= other | ...
Atualiza o set, adicionando elementos de others.
Alterado na versão 2.6: Accepts multiple input iterables.
-
intersection_update
(*others)¶ -
set &= other & ...
Atualiza o set, mantendo somente elementos encontrados nele e em others.
Alterado na versão 2.6: Accepts multiple input iterables.
-
difference_update
(*others)¶ -
set -= other | ...
Atualiza o set, removendo elementos encontrados em others.
Alterado na versão 2.6: Accepts multiple input iterables.
-
symmetric_difference_update
(other)¶ -
set ^= other
Atualiza o set, mantendo somente elementos encontrados em qualquer set, mas não em ambos.
-
add
(elem)¶ Adiciona o elemento elem ao set.
-
discard
(elem)¶ Remove o elemento elem do set se ele estiver presente.
-
clear
()¶ Remove todos os elementos do set.
Perceba, as versões sem operator dos métodos
update()
,intersection_update()
,difference_update()
, esymmetric_difference_update()
irão aceitar qualquer iterável como um argumento.Perceba, o argumento elem para os métodos
__contains__()
,remove()
, ediscard()
pode ser um set. Para suportar pesquisas por um frozenset equivalente, um frozenset temporário é criado a partir de elem.-
Ver também
- Comparison to the built-in set types
Differences between the
sets
module and the built-in set types.
5.8. Tipo de Mapeamento — dict
¶
A mapping object maps hashable values to arbitrary objects.
Mappings are mutable objects. There is currently only one standard mapping
type, the dictionary. (For other containers see the built in
list
, set
, and tuple
classes, and the
collections
module.)
As chaves de um dicionário são quase valores arbitrários. Valores que não são hasheáveis, isto é, valores contendo listas, dicionários ou outros tipos mutáveis (que são comparados por valor ao invés de por identidade do objeto) não devem ser usados como chaves. Tipos numéricos usados para chaves obedecem as regras normais para comparação numérica: se dois números comparados são iguais (tal como 1
e 1.0
), então eles podem ser usados intercambiavelmente para indexar a mesma entrada no dicionário. (Perceba entretanto, que como computadores armazenam números de ponto flutuante como aproximações, usualmente não é uma boa ideia utilizá-los como chaves para dicionários.)
Dicionários podem ser criados posicionando uma lista de pares key: value
separados por vírgula dentro de chaves, por exemplo: {'jack': 4098, 'sjoerd': 4127}
ou {4098: 'jack', 4127: 'sjoerd'}
, ou usando o construtor de dict
.
-
class
dict
(**kwarg)¶ -
class
dict
(mapping, **kwarg) -
class
dict
(iterable, **kwarg) Retorna um novo dicionário inicializado a partir de um argumento posicional opcional, e um set de argumentos nomeados possivelmente vazio.
Se nenhum argumento posicional é fornecido, um dicionário vazio é criado. Se um argumento posicional é fornecido e é um objeto de mapeamento, um dicionário é criado com os mesmos pares de chave-valor que o objeto de mapeamento. Caso contrário, o argumento posicional deve ser um objeto iterável. Cada item no iterável deve ser por si mesmo um iterável com exatamente dois objetos. O primeiro objeto de cada item torna-se a chave no novo dicionário, e o segundo objeto, o valor correspondente. Se a chave ocorrer mais do que uma vez, o último valor para aquela chave torna-se o valor correspondente no novo dicionário.
Se argumentos nomeados são fornecidos, os argumentos nomeados e seus valores são adicionados ao dicionário criado a partir do argumento posicional. Se uma chave sendo adicionada já está presente, o valor do argumento nomeado substitui o valor do argumento posicional.
Para ilustrar, os seguintes exemplos todos retornam um dicionário igual a
{"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
Fornecer argumentos nomeados conforme no primeiro exemplo somente funciona para chaves que são identificadores válidos no Python. Caso contrário, quaisquer chaves válidas podem ser usadas.
Novo na versão 2.2.
Alterado na versão 2.3: Support for building a dictionary from keyword arguments added.
Estas são as operações que dicionários suportam (e portanto, tipos de mapeamento personalizados devem suportar também):
-
len(d)
Retorna o número de items no dicionário d.
-
d[key]
Retorna o item de d com a chave key. Levanta um
KeyError
se key não estiver no mapeamento.Se uma subclasse de um dict define um método
__missing__()
e key não estiver presente, a operaçãod[key]
chama aquele método com a chave key como argumento. A operaçãod[key]
então retorna ou levanta o que é retornado ou levantado pela chamada de__missing__(key)
. Nenhuma operação ou método invoca__missing__()
. Se__missing__()
não for definido, entãoKeyError
é levantado.__missing__()
deve ser um método; ele não pode ser uma variável de instância:>>> class Counter(dict): ... def __missing__(self, key): ... return 0 >>> c = Counter() >>> c['red'] 0 >>> c['red'] += 1 >>> c['red'] 1
O exemplo acima mostra parte da implementação de
collections.Counter
. Um método__missing__
diferente é usado paracollections.defaultdict
.Novo na versão 2.5: Recognition of __missing__ methods of dict subclasses.
-
d[key] = value
Define
d[key]
para value.
-
del d[key]
Remove
d[key]
desde o d. Levanta uma exceçãoKeyError
se key não estiver em map.
-
key in d
Retorna
True
se d tiver uma chave key, senãoFalse
.Novo na versão 2.2.
-
key not in d
Equivalente a
not key in d
.Novo na versão 2.2.
-
iter(d)
Return an iterator over the keys of the dictionary. This is a shortcut for
iterkeys()
.
-
clear
()¶ Remove todos os itens do dicionário.
-
copy
()¶ Retorna uma cópia superficial do dicionário.
-
fromkeys
(seq[, value])¶ Create a new dictionary with keys from seq and values set to value.
fromkeys()
is a class method that returns a new dictionary. value defaults toNone
.Novo na versão 2.3.
-
get
(key[, default])¶ Retorna o valor para key se key está no dicionário, caso contrário default. Se default não é fornecido, será usado o valor padrão
None
, de tal forma que este método nunca levanta umKeyError
.
-
has_key
(key)¶ Test for the presence of key in the dictionary.
has_key()
is deprecated in favor ofkey in d
.
-
items
()¶ Return a copy of the dictionary’s list of
(key, value)
pairs.CPython implementation detail: 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.
If
items()
,keys()
,values()
,iteritems()
,iterkeys()
, anditervalues()
are called with no intervening modifications to the dictionary, the lists will directly correspond. This allows the creation of(value, key)
pairs usingzip()
:pairs = zip(d.values(), d.keys())
. The same relationship holds for theiterkeys()
anditervalues()
methods:pairs = zip(d.itervalues(), d.iterkeys())
provides the same value forpairs
. Another way to create the same list ispairs = [(v, k) for (k, v) in d.iteritems()]
.
-
iteritems
()¶ Return an iterator over the dictionary’s
(key, value)
pairs. See the note fordict.items()
.Using
iteritems()
while adding or deleting entries in the dictionary may raise aRuntimeError
or fail to iterate over all entries.Novo na versão 2.2.
-
iterkeys
()¶ Return an iterator over the dictionary’s keys. See the note for
dict.items()
.Using
iterkeys()
while adding or deleting entries in the dictionary may raise aRuntimeError
or fail to iterate over all entries.Novo na versão 2.2.
-
itervalues
()¶ Return an iterator over the dictionary’s values. See the note for
dict.items()
.Using
itervalues()
while adding or deleting entries in the dictionary may raise aRuntimeError
or fail to iterate over all entries.Novo na versão 2.2.
-
keys
()¶ Return a copy of the dictionary’s list of keys. See the note for
dict.items()
.
-
pop
(key[, default])¶ Se key está no dicionário, remove a mesma e retorna o seu valor, caso contrário retorna default. Se default não foi fornecido e key não está no dicionário, um
KeyError
é levantado.Novo na versão 2.3.
-
popitem
()¶ Remove and return an arbitrary
(key, value)
pair from the dictionary.popitem()
is useful to destructively iterate over a dictionary, as often used in set algorithms. If the dictionary is empty, callingpopitem()
raises aKeyError
.
-
setdefault
(key[, default])¶ Se key está no dicionário, retorna o seu valor. Se não, insere key com o valor default e retorna default. default por padrão usa o valor
None
.
-
update
([other])¶ Atualiza o dicionário com os pares chave/valor existente em other, sobrescrevendo chaves existentes. Retorna
None
.update()
accepts either another dictionary object or an iterable of key/value pairs (as tuples or other iterables of length two). If keyword arguments are specified, the dictionary is then updated with those key/value pairs:d.update(red=1, blue=2)
.Alterado na versão 2.4: Allowed the argument to be an iterable of key/value pairs and allowed keyword arguments.
-
values
()¶ Return a copy of the dictionary’s list of values. See the note for
dict.items()
.
-
viewitems
()¶ Return a new view of the dictionary’s items (
(key, value)
pairs). See below for documentation of view objects.Novo na versão 2.7.
-
viewkeys
()¶ Return a new view of the dictionary’s keys. See below for documentation of view objects.
Novo na versão 2.7.
-
viewvalues
()¶ Return a new view of the dictionary’s values. See below for documentation of view objects.
Novo na versão 2.7.
Dictionaries compare equal if and only if they have the same
(key, value)
pairs.-
5.8.1. Objetos de visão de dicionário¶
The objects returned by dict.viewkeys()
, dict.viewvalues()
and
dict.viewitems()
are view objects. They provide a dynamic view on the
dictionary’s entries, which means that when the dictionary changes, the view
reflects these changes.
Visões de dicionários podem ser iteradas para apresentar seus respectivos dados, e suportar testes de existência:
-
len(dictview)
Retorna o número de entradas no dicionário.
-
iter(dictview)
Retorna um iterador sobre as chaves, valores ou items (representados como tuplas de
(key, value)
) no dicionário.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 usingzip()
:pairs = zip(d.values(), d.keys())
. Another way to create the same list ispairs = [(v, k) for (k, v) in d.items()]
.Iterar sobre visões enquanto adiciona ou deleta entradas no dicionário pode levantar um
RuntimeError
ou falhar a iteração sobre todas as entradas.
-
x in dictview
Retorna
True
se x está nas chaves, valores ou items do dicionário subjacente (no último caso, x deve ser uma tupla de(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.
Um exemplo da utilização da visualização de dicionário:
>>> 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. Objetos File¶
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()
and the 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
module.
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:
-
file.
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. Callingclose()
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 when thewith
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()
Nota
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 functioncontextlib.closing()
instead of using the object directly.
-
file.
flush
()¶ Flush the internal buffer, like
stdio
’sfflush()
. This may be a no-op on some file-like objects.Nota
flush()
does not necessarily write the file’s data to disk. Useflush()
followed byos.fsync()
to ensure this behavior.
-
file.
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
module oros.read()
and friends.Nota
File-like objects which do not have a real file descriptor should not provide this method!
-
file.
isatty
()¶ Return
True
if the file is connected to a tty(-like) device, elseFalse
.Nota
If a file-like object is not associated with a real file, this method should not be implemented.
-
file.
next
()¶ A file object is its own iterator, for example
iter(f)
returns f (unless f is closed). When a file is used as an iterator, typically in afor
loop (for example,for line in f: print line.strip()
), thenext()
method is called repeatedly. This method returns the next input line, or raisesStopIteration
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 afor
loop the most efficient way of looping over the lines of a file (a very common operation), thenext()
method uses a hidden read-ahead buffer. As a consequence of using a read-ahead buffer, combiningnext()
with other file methods (likereadline()
) does not work right. However, usingseek()
to reposition the file to an absolute position will flush the read-ahead buffer.Novo na versão 2.3.
-
file.
read
([size])¶ Read at most 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.Nota
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.
-
file.
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 If the 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.
Nota
Unlike
stdio
’sfgets()
, the returned string contains null characters ('\0'
) if they occurred in the input.
-
file.
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.
-
file.
xreadlines
()¶ This method returns the same thing as
iter(f)
.Novo na versão 2.1.
Obsoleto desde a versão 2.3: Use
for line in file
instead.
-
file.
seek
(offset[, whence])¶ Set the file’s current position, like
stdio
’sfseek()
. The whence argument is optional and defaults toos.SEEK_SET
or0
(absolute file positioning); other values areos.SEEK_CUR
or1
(seek relative to the current position) andos.SEEK_END
or2
(seek relative to the file’s end). There is no return value.For example,
f.seek(2, os.SEEK_CUR)
advances the position by two andf.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+'
), anyseek()
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 bytell()
are legal. Use of other offsets causes undefined behavior.Note that not all file objects are seekable.
Alterado na versão 2.6: Passing float values as offset has been deprecated.
-
file.
tell
()¶ Return the file’s current position, like
stdio
’sftell()
.Nota
On Windows,
tell()
can return illegal values (after anfgets()
) when reading files with Unix-style line-endings. Use binary mode ('rb'
) to circumvent this problem.
-
file.
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.
-
file.
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()
orclose()
method is called.
-
file.
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.
-
file.
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.
-
file.
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.Novo na versão 2.3.
-
file.
errors
¶ The Unicode error handler used along with the encoding.
Novo na versão 2.6.
-
file.
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.
-
file.
name
¶ 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.
-
file.
newlines
¶ If Python was built with universal newlines 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 beNone
.
-
file.
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 writablesoftspace
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 writablesoftspace
attribute.
5.10. memoryview type¶
Novo na versão 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)¶ Create a
memoryview
that references obj. obj must support the buffer protocol. Built-in objects that support the buffer protocol includestr
andbytearray
(but notunicode
).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 asstr
andbytearray
, 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. Theitemsize
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 astr
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]
Existem também diversos atributos somente leitura disponíveis:
-
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
¶ Uma tupla de inteiros de comprimento
ndim
dando a forma da memória como uma matriz N-dimensional.
-
ndim
¶ Um número inteiro que indica quantas dimensões de uma matriz multidimensional a memória representa.
-
strides
¶ Uma tupla de inteiros de comprimento de
ndim
dando o tamanho em bytes para acessar cada elemento de cada dimensão da matriz.
-
readonly
¶ Um bool que indica se a memória é somente leitura.
-
5.11. Tipos de Gerenciador de Contexto¶
Novo na versão 2.5.
Python’s 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 context management protocol 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 ofwith
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 awith
statement.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 thewith
statement without affecting code outside thewith
statement.
-
contextmanager.
__exit__
(exc_type, exc_val, exc_tb)¶ Sai do contexto em tempo de execução e retorna um flag Booleano indicando se qualquer exceção que ocorreu deve ser suprimida. Se uma exceção ocorreu enquanto era executado o corpo da instrução
with
, os argumentos contém o tipo da exceção, valor e informação da pilha de execução. Caso contrário, os tres argumentos sãoNone
.Returning a true value from this method will cause the
with
statement to suppress the exception and continue execution with the statement immediately following thewith
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 thewith
statement.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 define diversos genreciadores de contexto para suportar facilmente sincronização de threads, solicita fechamento de arquivos ou outros objectos, e manipulação simples do contexto ativo de aritmética decimal. Os tipos especificados não são tratados especialmente além da sua implementação do protocolo do gerenciador de contexto. Veja o módulo contextlib
para alguns exemplos.
Python’s generators and the contextlib.contextmanager
decorator
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.
Perceba que não existe nenhum slot específico para qualquer um desses métodos no tipo structure para objetos Python na API do Python/C. Tipos de extensão que desejam definir estes métodos devem fornecê-los como um método acessível normal do Python. Comparado com a sobrecarga de configurar o contexto em tempo de execução, a sobrecarga na pesquisa de dicionário em uma única classe é negligenciável.
5.12. Outros tipos embutidos¶
O interpretador suporta diversos outros tipos de objetos. Maior parte desses, suporta apenas uma ou duas operações.
5.12.1. Módulos¶
A única operação especial em um módulo é o acesso a um atributo: m.nome
, onde m é um módulo e nome acessa o nome defino na tabela de símbolos de m. Atributos de módulo podem receber atribuição. (Perceba que a instrução import
não é, estritamente falando, uma operação em um objeto do módulo; import foo
não requer que um objeto do módulo chamado foo exista, ao invés disso requer uma definição (externa) de um módulo chamado foo em algum lugar.)
Um atributo especial de cada módulo é __dict__
. Este é o dicionário contendo a tabela de símbolos do modulo. Modificar este dicionário vai na verdade modificar a tabela de símbolos do módulo, mas atribuição direta para o atributo __dict__
não é possível (você pode escrever m.__dict__['a'] = 1
, o qual define m.a
para ser 1
, mas você não consegue escrever m.__dict__ = {}
). Modificar __dict__
diretamente não é recomendado.
Módulos embutidos no interpretador são escritos desta forma: <module 'sys' (built-in)>
. Se carregados a partir de um arquivo, eles são escritos como <module 'os' from '/usr/local/lib/pythonX.Y/os.pyc'>
.
5.12.2. Classes e Instâncias de Classes¶
Veja Objetos, valores e tipos e Class definitions para estes.
5.12.3. Funções¶
Objetos de funções são criados através da definição de funções. A única operação que pode ser feita em um objeto de função é chamá-la: func(lista-de-argumentos)
.
Existem na verdade duas possibilidades de objetos de função: funções embutidas e funções definidas pelo usuário. Ambas suportam a mesma operação (chamar a função), mas a implementação é diferente, portanto os diferentes tipos de objetos.
Veja a funçao Function definitions para maiores informações.
5.12.4. Métodos¶
Métodos são funções que são chamadas usando a notação de atributo. Existem duas opções: métodos embutidos (tal como append()
em listas) e métodos de instância de classe. Métodos embutidos são descritos com os tipos que suportam eles.
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
attribute will be 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
is raised.
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'
Veja o tipo A hierarquia de tipos padrão para maiores informações.
5.12.5. Objetos de Código¶
Code objects are used by the implementation to represent “pseudo-compiled”
executable Python code such as a function body. They differ from function
objects because they don’t contain a reference to their global execution
environment. Code objects are returned by the built-in compile()
function
and can be extracted from function objects through their func_code
attribute. See also the code
module.
A code object can be executed or evaluated by passing it (instead of a source
string) to the exec
statement or the built-in eval()
function.
Veja o tipo A hierarquia de tipos padrão para maiores informações.
5.12.6. Objetos de tipo¶
Objetos de tipos representam os vários tipos de objetos. Um tipo de um objeto é acessado pela função embutida type()
. Não existem operações especiais sobre tipos. O módulo padrão types
define nomes para todos os tipos padrão embutidos.
Types are written like this: <type 'int'>
.
5.12.7. O objeto 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).
Ele é escrito como None
.
5.12.8. O Objeto Ellipsis¶
This object is used by extended slice notation (see Slicings). It
supports no special operations. There is exactly one ellipsis object, named
Ellipsis
(a built-in name).
It is written as Ellipsis
. When in a subscript, it can also be written as
...
, for example seq[...]
.
5.12.9. O Objeto NotImplemented¶
This object is returned from comparisons and binary operations when they are asked to operate on types they don’t support. See Comparações for more information.
Está escrito como NotImplemented
.
5.12.10. Valores Booleanos¶
Valores Booleanos são os dois objetos constantes False
e True
. Eles são usados para representar valores verdadeiros (apesar que outros valores também podem ser considerados falso ou verdadeiro). Em contextos numéricos (por exemplo quando usados como argumentos para um operator aritmético), eles se comportam como os inteiros 0 e 1, respectivamente. A função embutida bool()
pode ser usada para converter qualquer valor para um Boolean, se o valor puder ser interpretado como um valor verdadeiro (veja a seção Teste do Valor Verdade acima).
Eles são escritos como False
e True
, respectivamente.
5.12.11. Objetos Internos¶
Veja A hierarquia de tipos padrão para esta informação. Ela descreve objetos de stack frame, objetos de traceback, e fatias de objetos.
5.13. Atributos Especiais¶
A implementação adiciona alguns atributos especiais somente-leitura para diversos tipos de objetos, onde eles são relevantes. Alguns desses não são reportados pela função embutida dir()
.
-
object.
__dict__
¶ Um dicionário ou outro objeto de mapeamento usado para armazenar os atributos (graváveis) de um objeto.
-
object.
__methods__
¶ Obsoleto desde a versão 2.2: Use the built-in function
dir()
to get a list of an object’s attributes. This attribute is no longer available.
-
object.
__members__
¶ Obsoleto desde a versão 2.2: Use the built-in function
dir()
to get a list of an object’s attributes. This attribute is no longer available.
-
instance.
__class__
¶ A classe à qual pertence uma instância de classe.
-
class.
__bases__
¶ A tupla de classes base de um objeto classe.
-
definition.
__name__
¶ The name of the class, type, function, method, descriptor, or generator instance.
The following attributes are only supported by new-style classes.
-
class.
__mro__
¶ Este atributo é uma tupla de classes que são consideradas ao procurar por classes bases durante resolução de métodos.
-
class.
mro
()¶ Este método pode ser substituído por uma metaclasse para customizar a ordem de resolução de métodos para suas instâncias. Ele é chamado na instanciação da classe, e o seu resultado é armazenado em
__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'>]
Notas de Rodapé
- 1
Informações adicionais sobre esses métodos especiais podem ser encontradas no Manual de Referência do Python (Customização básica).
- 2
Como uma consequência, a lista
[1, 2]
é considerada igual a[1.0, 2.0]
, e similarmente para tuplas.- 3
Eles precisam ter, já que o analisador sintático não consegue dizer o tipo dos operandos.
- 4(1,2,3,4)
Caracteres que possuem maiúsculo e minúsculo são aqueles com a propriedade de categoria geral igual a “Lu” (Letra, maiúscula), “Ll” (Letra, minúscula), ou “Lt” (Letra, em formato de título).
- 5
Para formatar apenas uma tupla, você deve portanto fornecer uma tupla singleton, cujo único elemento é a tupla a ser formatada.
- 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!).