Python bytes() method Last Updated : 02 Jan, 2025 Comments Improve Suggest changes Like Article Like Report bytes() method in Python is used to create a sequence of bytes. In this article, we will check How bytes() methods works in Python. Python a = "geeks" # UTF-8 encoding is used b = bytes(a, 'utf-8') print(b) Outputb'geeks' Table of Contentbytes() Method SyntaxUsing Custom EncodingConvert String to BytesConverting a List of Integers to BytesCreating a Bytes Object with a Specific SizeSyntax of bytes() bytes([source[, encoding[, errors]]])Parameters:source (optional)A string will be encoded into bytes using the specified encoding (default is 'utf-8').An iterable will have each element converted into bytes but it must have integers between 0 and 255.An integer creates a bytes object of that size with all elements initialized to 0.encoding (optional)This parameter is used when the source is a string. It specifies the encoding format to convert the string into bytes. The default encoding is 'utf-8' but you can use other encodings like 'ascii', 'utf-16', etc.errors (optional)Defines how to handle errors during the encoding process.'strict': Raises a UnicodeEncodeError if there is an error.'ignore': Ignores characters that can't be encoded.'replace': Replaces characters that can't be encoded with a placeholder (usually a question mark).Return Type: return type of the bytes() method is a bytes object. A bytes object is an immutable sequence of integers in the range from 0 to 255.Using Custom EncodingIf the string contains characters from other languages, we can specify a different encoding: Python a = "गीक्स" b = bytes(a, 'utf-16') # Converts the string to bytes using UTF-16 encoding print(b) Outputb'\xff\xfe\x17\t@\t\x15\tM\t8\t' Convert String to BytesPython String to bytes using the bytes() function, for this we take a variable with string and pass it into the bytes() function with UTF-8 parameters. When we pass a string to the bytes() method, we also need to tell Python which "language" (encoding) to use to convert the string. Python s = "Welcome to Geeksforgeeks" b = bytes(s, 'utf-8') print(b) Outputb'Welcome to Geeksforgeeks' Converting a List of Integers to BytesEach number in the list must be between 0 and 255 because each byte can only hold numbers in that range. When we pass a list of numbers to the bytes() method, Python will create a bytes object where each number in the list corresponds to one byte. Python a = [215, 66, 67] # Converts the list of integers into bytes b = bytes(a) print(b) Outputb'\xd7BC' Creating a Bytes Object with a Specific SizeBy passing a single integer to bytes(), Python will create a bytes object of that length, filled with zero values (because a byte is initially 0). Python a = 5 # Creates a bytes object of length 5, with all zero values b = bytes(a) print(b) Outputb'\x00\x00\x00\x00\x00' Comment More infoAdvertise with us Next Article chr() Function in Python manjeet_04 Follow Improve Article Tags : Python Python-Data Type Python-Built-in-functions python-string python +1 More Practice Tags : pythonpython Similar Reads Python Built in Functions Python is the most popular programming language created by Guido van Rossum in 1991. It is used for system scripting, software development, and web development (server-side). Web applications can be developed on a server using Python. Workflows can be made with Python and other technologies. Databas 6 min read abs() in Python The Python abs() function return the absolute value. The absolute value of any number is always positive it removes the negative sign of a number in Python. Example:Input: -29Output: 29Python abs() Function SyntaxThe abs() function in Python has the following syntax:Syntax: abs(number)number: Intege 3 min read Python - all() function The Python all() function returns true if all the elements of a given iterable (List, Dictionary, Tuple, set, etc.) are True otherwise it returns False. It also returns True if the iterable object is empty. Sometimes while working on some code if we want to ensure that user has not entered a False v 3 min read Python any() function Python any() function returns True if any of the elements of a given iterable( List, Dictionary, Tuple, set, etc) are True else it returns False. Example Input: [True, False, False]Output: True Input: [False, False, False]Output: FalsePython any() Function Syntaxany() function in Python has the foll 5 min read ascii() in Python Python ascii() function returns a string containing a printable representation of an object and escapes the non-ASCII characters in the string using \x, \u or \U escapes. It's a built-in function that takes one argument and returns a string that represents the object using only ASCII characters. Exa 3 min read bin() in Python Python bin() function returns the binary string of a given integer. bin() function is used to convert integer to binary string. In this article, we will learn more about Python bin() function. Example In this example, we are using the bin() function to convert integer to binary string. Python3 x = b 2 min read bool() in Python In Python, bool() is a built-in function that is used to convert a value to a Boolean (i.e., True or False). The Boolean data type represents truth values and is a fundamental concept in programming, often used in conditional statements, loops and logical operations.bool() function evaluates the tru 3 min read Python bytes() method bytes() method in Python is used to create a sequence of bytes. In this article, we will check How bytes() methods works in Python. Pythona = "geeks" # UTF-8 encoding is used b = bytes(a, 'utf-8') print(b)Outputb'geeks' Table of Contentbytes() Method SyntaxUsing Custom EncodingConvert String to Byte 3 min read chr() Function in Python chr() function returns a string representing a character whose Unicode code point is the integer specified. chr() Example: Python3 num = 97 print("ASCII Value of 97 is: ", chr(num)) OutputASCII Value of 97 is: a Python chr() Function Syntaxchr(num) Parametersnum: an Unicode code integerRet 3 min read Python dict() Function dict() function in Python is a built-in constructor used to create dictionaries. A dictionary is a mutable, unordered collection of key-value pairs, where each key is unique. The dict() function provides a flexible way to initialize dictionaries from various data structures.Example:Pythond=dict(One 4 min read Like