import requests
import json
url=“http://api.icndb.com/jokes/”
ID=int(input())
url=“http://api.icndb.com/jokes/{}”.format(ID)
rsp=requests.get(url)
Joke_dict=json.loads(rsp.content)
Joke=Joke_dict[“value”][“joke”]
print(Joke)
this is the code, i have written for the chuck norris jokes probem, it takes an input from the user and print the joke accordingly, but how do i upload it? i created a csv of the same but it says errored on submitting