Five++ cool Python snippets (Part - 2)
Introduction 👋
Python is a beautifully designed high-level interpreted programming language that provides us with many features.
This is a gentle guide to some of those Python features that you probably might not be aware of or didn't know about tha...
apoorvtyagi.tech4 min read
Amal Shaji
web + devtools = ❤️🔥
Fixes:
Lambda Function
Sliding windows
>>> from itertools import islice >>> def slide(list_name, window_size): ... z = [islice(list_name, i, None) for i in range(window_size)] ... return zip(*z)