Vivek Kumar Singh
Vivek on Software

Vivek on Software

Follow
Follow
homebadges

Are Tuples really immutable? #PyTip03

Aug 20, 20222 min read

Tuple in Python are immutable Data Structures. Unlike sets, dicts and lists, the values in a tuple cannot be changed once initialized. But is it...

Are Tuples really immutable? #PyTip03

Iterable Unpacking in Python #PyTip02

Aug 5, 20222 min read

Python provides an awesome variety of sequential data structures. The most common of them are list and tuple. These sequences are sometimes used to...

Iterable Unpacking in Python #PyTip02

How to make immutable dictionaries in Python #PyTip01

Aug 4, 20222 min read

Python is known for its batteries included capability, it has solutions for every data structure requirements. Dictionaries in Python are very useful...

How to make immutable dictionaries in Python #PyTip01

An Introduction to Kubernetes for Complete Beginners

May 14, 20228 min read

Understand the architecture of Kubernetes to have a solid understanding of the technology. · This comprehensive guide will teach you all you need to know...

An Introduction to Kubernetes for Complete Beginners

GCP Storage Solutions: A Beginner's Guide

May 12, 20224 min read

Storage solutions help a corporation grow and maintain large scale systems, which is an important aspect of a Cloud Architecture. Storage solutions in...

GCP Storage Solutions: A Beginner's Guide

Amazing functools features in Python

Apr 2, 20225 min read

I was recently reading Django’s Source Code, and I came across the @wraps decorator, which led me to the functools docs, where I discovered some...

Amazing functools features in Python