Flask - Deployment
Given this Flask snippet:
If the environment variable
import os
app_secret = os.getenv('APP_SECRET', 'defaultsecret')
print(app_secret)If the environment variable
APP_SECRET is not set, what will be printed?