Lambda-Sqaure

Sat 17 May 2025

title: "Lambda Square" author: "Raja CSP Raman" date: 2019-04-20 description: "-" type: technical_note draft: false


squares = list(map(lambda x: x**2, range(10)))
squares
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]


Score: 0

Category: basics