“Python Bytes для строки” Ответ

байты для струны питона

# 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'
Nutty Narwhal

Python преобразовать строку в байты

data = ""  			#string
data = "".encode()	#bytes
data = b"" 			#bytes
data = b"".decode() #string
data = str(b"")  	#string
Mattalui

Python Bytes для строки

>>> b"abcde"
b'abcde'

# utf-8 is used here because it is a very common encoding, but you
# need to use the encoding your data is actually in.
>>> b"abcde".decode("utf-8") 
'abcde'
Yvant2000

Ответы похожие на “Python Bytes для строки”

Вопросы похожие на “Python Bytes для строки”

Больше похожих ответов на “Python Bytes для строки” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования