GCP - Cloud Functions
Given this Python code snippet running in a Google Cloud Function:
If the environment variable
import os
api_key = os.getenv('API_KEY')
print(f"Key: {api_key}")If the environment variable
API_KEY is not set, what will be printed?