Python : Convert(cast) string to bytes example
Problem :
You have couple of string variables in Python and you want to convert or type cast the string variables to bytes. How to do that?
Solution :
For Python 3 :
Declare a string variable and find out the variable type with type(var)
var = "str"
type(var)
<class 'str'> // type string
Convert string type to bytes with encode() function
var = "str".encode()
type(var)
<class 'bytes'> // type bytes
Alternatively, you can convert or type cast the string into bytes...straightaway by adding the b character pre-fix.
var = b"str"
type(var)
<class 'bytes'> // type bytes
See also : Python : Convert(cast) bytes to string example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.1k Javascript : How to check a browser's Do Not Track status?
+9.1k Golang : What is the default port number for connecting to MySQL/MariaDB database ?
+6.5k Golang : Calculate US Dollar Index (DXY)
+37.8k Upload multiple files with Go
+4.9k PHP : Extract part of a string starting from the middle
+8.2k Golang : What fmt.Println() can do and println() cannot do
+15.7k Golang : Validate hostname
+8.4k Golang : HttpRouter multiplexer routing example
+17.6k Golang : Multi threading or run two processes or more example
+6k Javascript : How to replace HTML inside <div>?
+15.1k Golang : How to check for empty array string or string?
+11.7k SSL : The certificate is not trusted because no issuer chain was provided