stevejonn
About
- Username
- stevejonn
- Joined
- Visits
- 0
- Last Active
- Roles
- Member
Comments
-
The reason for this error is that in Python 3, strings are Unicode, but when transmitting on the network, the data needs to be bytes instead. We can convert bytes to string using bytes class decode() instance method, So you need to decode the bytes …