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 1 October, 2021

Python Dictionary Methods

A Dictionary is a Python inbuilt data structure that store the items in the form of key:value pairs…

vinaykhatri
Vinay Khatri 1 October, 2021

Python SyntaxError: unexpected EOF while parsing Solution

Despite being a clean and easy language, Python still follows a strict syntax pattern. And a develo…

vinaykhatri
Vinay Khatri 1 October, 2021

Sort binary array in linear time

We have given a binary array (contains one 1s and 0s), and we need to write a logic that can sort t…

vinaykhatri
Vinay Khatri 1 October, 2021

Search an element in rotated sorted array

You are given a sorted array and a key element as input. Find the index of the key element in the a…

vinaykhatri
Vinay Khatri 1 October, 2021

Python IndexError: tuple index out of range Solution

Similar to Python lists, Python tuples also support indexing to access its individual elements. Alt…

vinaykhatri
Vinay Khatri 28 September, 2021

Python valueerror: could not convert string to float Solution

Python supports type conversion in which Python provides us different inbuilt methods such as float…

vinaykhatri
Vinay Khatri 28 September, 2021

Python indexerror: list assignment index out of range Solution

IndexError is one of the most common errors that arise when we try to use an index value out of the…

vinaykhatri
Vinay Khatri 28 September, 2021

Python local variable referenced before assignment Solution

The most common error you may encounter while working with Python and user-defined functions is Unb…

vinaykhatri
Vinay Khatri 28 September, 2021

Python typeerror: string indices must be integers Solution

In Python, we have some data structures like lists, tuples, and strings that use indexing to access…

vinaykhatri
Vinay Khatri 28 September, 2021

Python valueerror: too many values to unpack (expected 2) Solution

Python valueerror: too many values to unpack (expected 2)is an unpacking error that occurs whe…

vinaykhatri
Vinay Khatri 28 September, 2021

Python typeerror: ‘list’ object is not callable Solution

typeerror: ‘list’ object is not callable is a Python error, and it is not that common, …

vinaykhatri
Vinay Khatri 28 September, 2021

Python indexerror: list index out of range Solution

Indexerror: list index out of range  is one of the most common errors you may encounter while …