Confusion in Chuck Norris Jokes challenge

I have submitted the python file which contains the following code. I am confused because there was written as Upload CSV. Please tell me that whatever I have submitted is correct or clarify the question.

import requests
import json

id = input("Enter the joke’s ID: ")

url = “http://api.icndb.com/jokes/”+id

rp = requests.get(url,id)

data = rp.content

json_data = json.loads(data)

with open(‘joke.csv’,‘w’) as f:
f.write(json_data[‘value’][‘joke’])

Sorry. Not submitted yet.

Hello @vinay86048, we need to submit the CSV file in that. You have given a ques in which the Ids are mentioned for the jokes that are required and we need to get those jokes into the CSV file and then upload it and in the backend, your CSV file will be judged. I hope this is clear to you and in case there will be any confusion pls let me know. And if it is clear to you pls mark it as resolve and feel free to provide the feedback.
Thanks :slight_smile:

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.