What is the meaning of body (refers to?) in the code below?
headers = ['Content-length']=str(len(bytes(body, 'utf-8')))
return urllib.request.Request(theurl, bytes(body, 'utf-8'), headers)
Sourse : BadStatusLine exception raised when returning reply from server in Python 3