Rest API - HTTP Methods
Given this Python code using the requests library, what will be the HTTP status code if the resource is created successfully?
import requests
url = 'https://api.example.com/items'
data = {'name': 'Book', 'price': 12.99}
response = requests.post(url, json=data)
print(response.status_code)