Answers for "python string argument without an encoding"

1

python string argument without an encoding

You will not do bytes("bla bla") but just b"blabla" or you need to specify an encoding type like bytes("bla bla","utf-8") because it needs to know what was the original encoding before turning it into an array of numbers.
Posted by: Guest on October-28-2021

Code answers related to "python string argument without an encoding"

Python Answers by Framework

Browse Popular Code Answers by Language