{{theTime}}

Search This Blog

Total Pageviews

Algebra using Python Lambda

Write a function to multiply the number by 10 using Lambda

x = lambda a : a * 10
print(x(5))

No comments:

Generate Insert Sql from Select Statement

SELECT 'INSERT INTO ReferenceTable (ID, Name) VALUES (' +        CAST(ID AS NVARCHAR) + ', ''' + Name + ''...