Python:
import json
user = {
    "name": "Victor"
}
json_py = json.dumps(user)
Javascript:
const user = {
    name: "Victor"
}
const jsonJs = JSON.stringify(user);
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)