In Python, what is the difference between json.load() and json.loads()?
json.load()
json.loads()
I guess that the load() function must be used with a file
Yes, s stands for string. The json.loads function does not take the file path, but the file contents as a string. Look at the documentation at https://docs.python.org/2/library/json.html!
s
json.loads