vinaykhatri
Vinay Khatri

I am a Full Stack Developer with a Bachelor's Degree in Computer Science, who also loves to write technical articles that can help fellow developers.

vinaykhatri
Vinay Khatri 23 October, 2021

Python TypeError: 'float' object is not iterable Solution

In Python, we have some iterable objects such as a string, list, tuple, dictionary, and set. The on…

vinaykhatri
Vinay Khatri 23 October, 2021

Python AttributeError: 'numpy.ndarray' object has no attribute 'appen…

Numpy is a third-party open-source Python scientific computational library. It is widely used for i…

vinaykhatri
Vinay Khatri 23 October, 2021

Python ValueError: max() arg is an empty sequence Solution

Python max() is an inbuilt function that can accept an iterable object and return the largest value…

vinaykhatri
Vinay Khatri 23 October, 2021

Find the smallest subarray length whose sum of elements is >= k

Find the smallest subarray length whose sum of elements is >= k Problem Given an array of …

vinaykhatri
Vinay Khatri 23 October, 2021

Python Optional Arguments: A Complete Guide

In Python, if a function has a default parameter value at function definition, then during the func…

vinaykhatri
Vinay Khatri 23 October, 2021

Python List Files in a Directory: A Complete Guide

In Python, we have an inbuilt module os that provides various methods and properties to perform ope…

vinaykhatri
Vinay Khatri 23 October, 2021

Python TypeError: can only concatenate list (not "int") to list Solut…

Similar to the strings, Python lists also support the concatenation operation between two list obje…

vinaykhatri
Vinay Khatri 23 October, 2021

Python AttributeError: 'str' object has no attribute 'append' solution

Python list supports an inbuilt method append() that can add a new element to the list object. The …

vinaykhatri
Vinay Khatri 23 October, 2021

Python TypeError: Name() takes no arguments Solution

In Python, we use the class keyword to create a blueprint for an object. And inside the class, we c…

vinaykhatri
Vinay Khatri 23 October, 2021

Python KeyError: A Complete Guide

In Python, keys are used by the dictionary to assign and access values. But if we try to access a d…

vinaykhatri
Vinay Khatri 23 October, 2021

Python FileNotFoundError: [Errno 2] No such file or directory Solution

When we read data from a file using Python there, we need to specify the file name. And that file n…

vinaykhatri
Vinay Khatri 23 October, 2021

Python RecursionError: maximum recursion depth exceeded while calling…

In programming, recursive functions are routines or methods that call themselves directly or indire…