Rest API - HTTP Methods
Given this Python code using requests library:
What will be printed if the item was successfully deleted?
import requests
response = requests.delete('https://api.example.com/items/45')
print(response.status_code)What will be printed if the item was successfully deleted?
