Python 내장 함수 - bytearray
영문 문서 및 번역
class bytearray([source[, encoding[, errors]]]) Return a new array of bytes. The bytearray class is a mutable sequence of integers in the range 0 <= x < 256. It has most of the usual methods of mutable sequences, described in Mutable Sequence Types, as well as most methods that the bytes type has, see Bytes and Bytearray Operations. The optional source parameter can be used to initialize the array in a few different ways: def __init__(self, source=None, encoding=None, errors='strict'): # known special case of bytearray.__init__
"""
bytearray(iterable_of_ints) -> bytearray
bytearray(string, encoding[, errors]) -> bytearray
bytearray(bytes_or_buffer) -> mutable copy of bytes_or_buffer
bytearray(int) -> bytes array of size given by the parameter initialized with null bytes
bytearray() -> empty bytes array
Construct a mutable bytearray object from:
- an iterable yielding integers in range(256)
- a text string encoded using the specified encoding
- a bytes or a buffer object
- any object implementing the buffer API.
- an integer
# (copied from class doc)
"""
pass
새로운 바이트 그룹을 되돌려줍니다.bytearray 클래스는range 0 < = x < 256의 가변 서열입니다.이것은 대부분의 가변 서열에 대한 일반적인 방법, 가변 서열 형식에 대한 설명, 그리고 대부분의 바이트 형식에 대한 방법이 있습니다. 바이트와 Bytearray 조작을 참고하십시오.선택적 소스 매개변수는 여러 가지 방법으로 배열을 초기화할 수 있습니다.매개 변수가 없으면 크기가 0인 그룹을 만듭니다..
설명
#!/usr/bin/python3
b = bytearray()
print(b)
print(len(b))
결과:bytearray(b'')
0
b = bytearray(' ')
결과:Traceback (most recent call last):
File "D:/py/day001/day1/test.py", line 3, in
b = bytearray(' ')
TypeError: string argument without an encoding
encoding 매개 변수도 제공해야 합니다. 함수는 문자열을str.encode 방법으로 바이트 그룹으로 변환합니다b = bytearray(' ', 'utf-8')
print(b)
print(len(b))
결과:bytearray(b'\xe4\xb8\xad\xe6\x96\x87')
6
#!/usr/bin/python3
b = bytearray(5)
print(b)
print(len(b))
실행 결과:bytearray(b'\x00\x00\x00\x00\x00')
5
#!/usr/bin/python3
b = bytearray([1,2,3,4,5])
print(b)
print(len(b))
실행 결과:bytearray(b'\x01\x02\x03\x04\x05')
5
#!/usr/bin/python3
b = bytearray([1,2,3,4,5,256])
print(b)
print(len(b))
실행 결과:Traceback (most recent call last):
File "D:/py/day001/day1/test.py", line 3, in
b = bytearray([1,2,3,4,5,256])
ValueError: byte must be in range(0, 256)
원문 주소
Python 내장 함수 - bytearray 저는 이 편이 아주 잘 정리되어 있다고 생각합니다. 다음에 사용할 때 찾을 수 없는 것을 방지하기 위해 전재합니다.이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.