TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

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

bytes() in Python | Python bytes() Function with Examples on Python, Built in, Functions, abs Function, all Function, bin Function, bool Function, python Functions, new sum Function, bytes Function, new callable Function etc.

<< Back to PYTHON

Python bytes() Function

The python bytes() function in Python is used for returning a bytes object. It is an immutable version of bytearray() function.

It can create empty bytes object of the specified size.

Signature

  • bytes(source)
  • bytes(encoding)
  • bytes(error)

Parameters

source is used to initialize the bytes object. It is an optional parameter.

encoding is optional unless source is string type. It is used to convert the string to bytes using str.encode() function

errors is also an optional parameter. It is used when the source is string type. Also, when encoding fails due to some error.

Return

It returns a bytes object.

Let's see some examples of bytes() function to understand it's functionality.

Python bytes() Function Example 1

This is a simple example of converting string into bytes.

string = "Hello World."
arr = bytes(string, 'utf-8')
print(arr)

Output:

b ' Hello World.'

Python bytes() Function Example 2

This example creates a byte of a given integer size.

size = 5
arr = bytes(size)
print(arr)

Output:

b'\x00\x00\x00\x00\x00'

Python bytes() Function Example 3

This example converts iterable list to bytes.

List = [1, 2, 3, 4, 5]
arr = bytes(List)
print(arr)

Output:

b'\x01\x02\x03\x04\x05'





Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf