Answers for "bytes to string to bytes python"

7

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 April-19-2021
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

Python Answers by Framework

Browse Popular Code Answers by Language