TS
RSS
7–12 of 17

Sunday, 10 October 2021

Understanding all of Python, through its builtins

Python has a whole lot of builtins that are unknown to most people. This guide aims to introduce you to everything that Python has to offer, through its seemingly obscure builtins.

Wednesday, 20 August 2021

The math behind Python's slices

You can pass negative indices to Python slices?! Learn about them and a lot more in this guide.

Wednesday, July 7 2021

What the f-strings?

A comprehensive overview of Python's hottest new feature: f-strings.

Monday, 24 May 2021

Ace your leetcode preparations

The things I made and tips I learned while practicing my Data Structures and Algorithms on LeetCode.

Wednesday, 28 April 2021

Does Python need types?

Python is famously a dynamic language, and many attribute its success to its dynamically typed nature. But is that really all there is to it?