array
— 효율적인 숫자 배열¶
이 모듈은 문자, 정수, 부동 소수점 숫자와 같은 기본적인 값의 배열을 간결하게 표현할 수 있는 객체 형을 정의합니다. 배열은 시퀀스 형이며 리스트와 매우 비슷하게 행동합니다만, 그곳에 저장되는 객체의 형이 제약된다는 점이 다릅니다. 형은 객체 생성 시에 단일 문자인 형 코드(type code)를 사용하여 지정됩니다. 다음 형 코드가 정의됩니다:
형 코드 |
C 형 |
파이썬 형 |
최소 크기(바이트) |
노트 |
---|---|---|---|---|
|
signed char |
int |
1 |
|
|
unsigned char |
int |
1 |
|
|
wchar_t |
유니코드 문자 |
2 |
(1) |
|
signed short |
int |
2 |
|
|
unsigned short |
int |
2 |
|
|
signed int |
int |
2 |
|
|
unsigned int |
int |
2 |
|
|
signed long |
int |
4 |
|
|
unsigned long |
int |
4 |
|
|
signed long long |
int |
8 |
|
|
unsigned long long |
int |
8 |
|
|
float |
float |
4 |
|
|
double |
float |
8 |
노트:
플랫폼에 따라 16비트 또는 32비트 일 수 있습니다.
버전 3.9에서 변경:
array('u')
now useswchar_t
as C type instead of deprecatedPy_UNICODE
. This change doesn’t affect its behavior becausePy_UNICODE
is alias ofwchar_t
since Python 3.3.버전 3.3에서 폐지되었습니다, 버전 4.0에서 제거됩니다..
The actual representation of values is determined by the machine architecture
(strictly speaking, by the C implementation). The actual size can be accessed
through the array.itemsize
attribute.
The module defines the following item:
- array.typecodes¶
사용 가능한 모든 형 코드가 있는 문자열.
모듈은 다음 형을 정의합니다:
- class array.array(typecode[, initializer])¶
A new array whose items are restricted by typecode, and initialized from the optional initializer value, which must be a
bytes
orbytearray
object, a Unicode string, or iterable over elements of the appropriate type.If given a
bytes
orbytearray
object, the initializer is passed to the new array’sfrombytes()
method; if given a Unicode string, the initializer is passed to thefromunicode()
method; otherwise, the initializer’s iterator is passed to theextend()
method to add initial items to the array.배열 객체는 인덱싱, 슬라이싱, 이어붙이기 및 곱셈과 같은 일반적인 시퀀스 연산을 지원합니다. 슬라이스 대입을 사용할 때, 대입되는 값은 같은 형 코드의 배열 객체여야 합니다; 다른 모든 경우에는,
TypeError
가 발생합니다. 배열 객체는 버퍼 인터페이스도 구현하며, 바이트열류 객체가 지원되는 곳이면 어디에서나 사용될 수 있습니다.typecode
,initializer
인자로 감사 이벤트(auditing event)array.__new__
를 발생시킵니다.- typecode¶
배열을 만드는 데 사용된 typecode 문자.
- itemsize¶
내부 표현에서 하나의 배열 항목의 길이 (바이트).
- append(x)¶
배열의 끝에 값 x로 새 항목을 추가합니다.
- buffer_info()¶
Return a tuple
(address, length)
giving the current memory address and the length in elements of the buffer used to hold array’s contents. The size of the memory buffer in bytes can be computed asarray.buffer_info()[1] * array.itemsize
. This is occasionally useful when working with low-level (and inherently unsafe) I/O interfaces that require memory addresses, such as certainioctl()
operations. The returned numbers are valid as long as the array exists and no length-changing operations are applied to it.참고
C나 C++로 작성된 코드(이 정보를 효율적으로 사용하는 유일한 방법)에서 배열 객체를 사용할 때, 배열 객체가 지원하는 버퍼 인터페이스를 사용하는 것이 좋습니다. 이 메서드는 이전 버전과의 호환성을 위해 유지되며 새 코드에서는 사용하지 않아야 합니다. 버퍼 인터페이스는 버퍼 프로토콜에 설명되어 있습니다.
- byteswap()¶
배열의 모든 항목을 “바이트 스와프(byteswap)” 합니다. 1, 2, 4 또는 8바이트 크기의 값에 대해서만 지원됩니다; 다른 형의 값이면
RuntimeError
가 발생합니다. 바이트 순서가 다른 컴퓨터에서 작성된 파일에서 데이터를 읽을 때 유용합니다.
- count(x)¶
배열 내에서 x가 등장하는 횟수를 반환합니다.
- extend(iterable)¶
iterable의 항목을 배열의 끝에 추가합니다. iterable이 다른 배열이면, 정확히 같은 형 코드를 가져야 합니다; 그렇지 않으면,
TypeError
가 발생합니다. iterable이 배열이 아니면, 이터러블이어야 하며 요소는 배열에 추가할 올바른 형이어야 합니다.
- frombytes(buffer)¶
Appends items from the bytes-like object, interpreting its content as an array of machine values (as if it had been read from a file using the
fromfile()
method).버전 3.2에 추가:
fromstring()
is renamed tofrombytes()
for clarity.
- fromfile(f, n)¶
Read n items (as machine values) from the file object f and append them to the end of the array. If less than n items are available,
EOFError
is raised, but the items that were available are still inserted into the array.
- fromlist(list)¶
리스트에서 항목을 추가합니다. 이것은 형 에러가 있으면 배열이 변경되지 않는다는 점만 제외하면
for x in list: a.append(x)
와 동등합니다.
- fromunicode(s)¶
Extends this array with data from the given Unicode string. The array must have type code
'u'
; otherwise aValueError
is raised. Usearray.frombytes(unicodestring.encode(enc))
to append Unicode data to an array of some other type.
- index(x[, start[, stop]])¶
Return the smallest i such that i is the index of the first occurrence of x in the array. The optional arguments start and stop can be specified to search for x within a subsection of the array. Raise
ValueError
if x is not found.버전 3.10에서 변경: Added optional start and stop parameters.
- insert(i, x)¶
i 위치 앞에 값이 x인 새 항목을 배열에 삽입합니다. 음수 값은 배열 끝에 상대적인 값으로 처리됩니다.
- pop([i])¶
배열에서 인덱스 i에 있는 항목을 제거하고 이를 반환합니다. 선택적 인자의 기본값은
-1
이므로, 기본적으로 마지막 항목이 제거되고 반환됩니다.
- remove(x)¶
배열에서 첫 번째 x를 제거합니다.
- reverse()¶
배열의 항목 순서를 뒤집습니다.
- tobytes()¶
배열을 기곗값 배열로 변환하고 바이트열 표현(
tofile()
메서드로 파일에 기록될 바이트 시퀀스와 같습니다)을 반환합니다.버전 3.2에 추가:
tostring()
is renamed totobytes()
for clarity.
- tolist()¶
배열을 같은 항목이 있는 일반 리스트로 변환합니다.
- tounicode()¶
Convert the array to a Unicode string. The array must have a type
'u'
; otherwise aValueError
is raised. Usearray.tobytes().decode(enc)
to obtain a Unicode string from an array of some other type.
The string representation of array objects has the form
array(typecode, initializer)
.
The initializer is omitted if the array is empty, otherwise it is
a Unicode string if the typecode is 'u'
, otherwise it is
a list of numbers.
The string representation is guaranteed to be able to be converted back to an
array with the same type and value using eval()
, so long as the
array
class has been imported using from array import array
.
Variables inf
and nan
must also be defined if it contains
corresponding floating point values.
Examples:
array('l')
array('u', 'hello \u2641')
array('l', [1, 2, 3, 4, 5])
array('d', [1.0, 2.0, 3.14, -inf, nan])