def calculate_squares(numbers):
return [n**2 for n in numbers]
my_list = [1, 2, 3, 4, 5]
print("Original:", my_list)
print("Squares:", calculate_squares(my_list))Original: [1, 2, 3, 4, 5]
Squares: [1, 4, 9, 16, 25]
June 5, 2026
Watch how Quarto can actually run Python code and show the result!