I am a beginner in python. Unfortunately, I just deleted the:
..Python3.5/http/
directory.
To fix that, I downloaded the same from https://github.com/python/cpython/tree/master/Lib/http
But when I run any script that needs the content of the deleted folder, I get this error
File "/usr/lib/python3.5/http/client.py", line 1063
chunk = f"{len(chunk):X}\r\n".encode('ascii') + chunk \
^
SyntaxError: invalid syntax
What is the syntax error and how can I fix this ?
Thanks in Advance