Rest API - Webhooks and Events
Given this Python retry function, what will be printed if the API always returns status code 503?
def retry_api_call():
for _ in range(3):
response = {'status_code': 503}
if response['status_code'] == 200:
print('Success')
return
print('Failed after retries')
retry_api_call()
