Python bytearray() FunctionLast Updated : 17 Mar 2025 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. Python bytearray() Function SyntaxIt has the following syntax: Parameters
ReturnIt returns an array of bytes. Different Examples for Python bytearray() FunctionHere, we are going to discuss several examples for Python bytearray() Function. Python bytearray() Function Example 1The 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 2The below example shows an array of bytes of given integer size: Output: bytearray(b'\x00\x00\x00\x00\x00') Python bytearray() Function Example 3The below example shows an array of bytes from an iterable list: Output: bytearray(b'\x02\x03\x04\x05\x06') Next TopicPython Functions |
We request you to subscribe our newsletter for upcoming updates.