Bhavesh Kukreja

Bhavesh Kukreja @bhavesh_kukreja

About: I love learning everything that comes my way to build scalable and performant software that provides seamless and engaging user experiences.

Location:
Mumbai, India
Joined:
Sep 6, 2025

Bhavesh Kukreja
articles - 2 total

A Deep Dive Into Python Dictionaries

my_dict = {'name': 'Guido', 'year': 1991} print(my_dict['name']) Enter fullscreen mode ...

Learn More 7 0Oct 3

What Python Lists Really Are

1. How Do Lists Really Work? myList = [1, 2, 3, 4] for i in myList: print(i) ...

Learn More 1 0Sep 13