Posts by Vimal Pandey

Author Biographical Info: Not available

How to implement list as stack in Python

By Vimal Pandey

Hello guys, in this tutorial we will learn how to implement a list as a stack in Python. The list is a collection of objects of different data types. The list is a sequence of muta.... Read More

Packing and unpacking arguments in Python

By Vimal Pandey

Welcome back, guys. In this post, we will learn about packing and unpacking the arguments in Python while passing it to the functions. How to pack and unpack arguments in Python Le.... Read More

Keyword-Only Arguments in Python

By Vimal Pandey

Welcome back, guys. In this post, we will learn about the concept of Keyword-only arguments in Python. Keyword arguments, a method of passing actual arguments to the user-defined f.... Read More

Find common elements from two tuples in Python

By Vimal Pandey

In this tutorial, we will learn how to find common elements from two tuples in Python. Sometimes while programming there may be a situation when we have t0 find common things betwe.... Read More