Home » bytearray() in Python | Python bytearray() Function with Examples

bytearray() in Python | Python bytearray() Function with Examples

by Online Tutorials Library

Python bytearray() Function

The python bytearray() function returns a bytearray object and can convert objects into bytearray objects, or create an empty bytearray object of the specified size.

Signature

Parameters

x (optional) : It is the source that initializes the array of bytes.

encoding (optional) : It is an encoding of the string.

error (optional) : It takes action when the encoding fails.

Return

It returns an array of bytes.

Python bytearray() Function Example 1

The below example shows an array of bytes from a string:

Output:

bytearray(b'Python is programming language.')  

Explanation: In the above example, we take a variable that contains a string value and convert it into a bytearray object.

Python bytearray() Function Example 2

The below example shows an array of bytes of given integer size:

Output:

  bytearray(b'x00x00x00x00x00')  

Python bytearray() Function Example 3

The below example shows an array of bytes from an iterable list:

Output:

bytearray(b'x02x03x04x05x06')  

Next TopicPython Functions

You may also like