Python bytearray() function | bytearray() function in Python

Опубликовано: 09 Октябрь 2024
на канале: Parag Dhawan
200
8

Python bytearray() function | bytearray() function in Python
the byte array method returns a bytearray object which is an array of the given bytes.

code:-


bytearray()

bytearray?

b1 = bytearray(range(257))

print(b1)

for i in range(0,256):
print(b1[i],end=",")

b1[0]=100

for i in range(0,10):
print(b1[i],end=",")

bytearray?

b2 = bytearray(" python 3 ","utf8","eroor message ")

print(b2)

b2[0]= 100

print(b2)

bytearray?

b3 = bytearray(b2)

print(b3)

bytearray?

b4 = bytearray(3)

print(b4)

bytearray?

b5 = bytearray()

print(b5)

help(b5.extend)

b5.extend([10,20,30])

print(b5)
=============================================================================
Link for Tutorial Series

Jupyter Notebook Tutorial Series:-
   • How To Open Jupyter Notebook in Windows  

Python Tutorial Series:-
   • Introduction to Python | Python Appli...  

Python Assignments and Objective Questions:-
   • Objective Questions Python - 1  

Tech. Videos By Parag Dhawan;-
   • Template Matching Using OpenCV (Pytho...  

=============================================================================
Feel free to connect and ask your queries:-

Linkedin:-   / parag-dhawan  
Youtube:-    / paragdhawan  
Facebook Page:- http://fb.me/dhawanparag
Instagram: -   / paragdhawan  
Twitter:-   / dhawan_parag  
GitHub:- https://github.com/paragdhawan/
Facebook Profile:- https://www.facebook.com/profile.php?...

=============================================================================
Show your support by Subscribing to the channel:-

https://www.youtube.com/c/ParagDhawan...
=============================================================================
Link of Next video:-    • How to debug a Python Program | Pytho...  
=============================================================================
#ParagDhawan
#PythonCrashCourse
#Python
#PythonTutorialForBeginners
#PythonForDataScience
#PythonProgramming
#PythonProgrammingLanguage
#PythonTutorial
#PythonCode
#Python3
=============================================================================
Note: Watch the video at a speed of 1.5