Python ไบต์ ()ฟังก์ชั่น
ตัวอย่าง
ส่งคืนอาร์เรย์ 4 ไบต์:
x = bytes(4)
ความหมายและการใช้งาน
ฟังก์ชันbytes()
ส่งคืนอ็อบเจ็กต์ไบต์
มันสามารถแปลงวัตถุเป็นวัตถุไบต์หรือสร้างวัตถุไบต์ว่างในขนาดที่ระบุ
ความแตกต่างระหว่างbytes()
and
bytearray()
คือ
bytes()
ส่งคืนอ็อบเจ็กต์ที่ไม่สามารถแก้ไขได้ และ
bytearray()
ส่งคืนอ็อบเจ็กต์ที่สามารถแก้ไขได้
ไวยากรณ์
bytes(x, encoding, error)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
x | A source to use when creating the bytes object. If it is an integer, an empty bytes object of the specified size will be created. If it is a String, make sure you specify the encoding of the source. |
encoding | The encoding of the string |
error | Specifies what to do if the encoding fails. |