+ 1
Please help me to clear errors
limited=raw.split(",") TypeError: a byte object is required, not 'str' Help me to solve soon as possible
1 Answer
+ 1
Do :
limited = raw.split(b",")
The 'b' specifies that Python must consider it as a bytes object
limited=raw.split(",") TypeError: a byte object is required, not 'str' Help me to solve soon as possible