Answers for "convert to string or bytes python"

31

bytes to string python

# utf-8 is used here because it is a very common encoding, but you
# need to use the encoding your data is actually in.
bytes = b'abcde'
bytes.decode("utf-8") 
'abcde'
Posted by: Guest on March-30-2020
1

python string to bytes

#Python string to bytes:

s = 'abc'

# string to bytes using bytes()
b = bytes(s, encoding='utf-8')
print(type(b))							# <class 'bytes'>
print(b)								# b'abc'

# bytes to string using decode()
s = b.decode()
print('Original String =', s)			# Original String = abc
s = 'xyz'								

# string to bytes using encode()
b = s.encode(encoding='utf-8')
print(b)								# b'xyz'
s = b.decode()
print('Original String =', s)			# Original String = xyz
Posted by: Guest on July-07-2021

Code answers related to "convert to string or bytes python"

Python Answers by Framework

Browse Popular Code Answers by Language