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
+12.4k Golang : 2 dimensional array example
+11.8k Golang : How to detect a server/machine network interface capabilities?
+5.4k Golang : Get FX sentiment from website example
+8.6k Android Studio : Import third-party library or package into Gradle Scripts
+10k Golang : Get escape characters \u form from unicode characters
+17.6k Golang : Clone with pointer and modify value
+6.5k Golang : Handling image beyond OpenCV video capture boundary
+8.1k Golang : HTTP Server Example
+19k Golang : Read input from console line
+5.4k Golang : Return multiple values from function
+6.6k Golang : Totalize or add-up an array or slice example
+9.4k Golang : How to get username from email address