Flask - Background Tasks
Given this code snippet in a Flask app with Celery:
@celery_app.task
def multiply(x, y):
return x * y
result = multiply.delay(3, 4)
print(result.get())
What will be printed?