Software Engineering - Fundamentals
Given the code snippet applying the YAGNI principle:
What will be the output?
features = []
if False:
features.append('Extra feature')
print(features)What will be the output?
