{{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:

Setup AWS Application Load Balancer Https

Setting up HTTPS for an AWS Application Load Balancer (ALB) involves configuring an HTTPS listener, deploying an SSL certificate, and defini...