yum config manager command not found [Solved]

In this tutorial, we will learn about how to fix the error “yum config manager command not found” in Linux. This error indicates that the yum is not able to find yum-config-manager command in Linux. This error mostly occurs when the config manager package is not installed in the Linux system and we try to … Read more

Python Import Class From Another File [Step by Step guide]

  In this tutorial, we will learn about Python import Class from another file. Classes in any programming language are fundamental to Object Oriented programming and are essential for creating organized, reusable and maintainable code. We will learn about the methods to reuse classes using import functionality in the upcoming sections. So let’s get started. … Read more

How to Move a File in Python [Step by Step Guide]

In this tutorial, we will learn about how to move a file in Python using step by step guide. In any programming language, transferring data from one path to another is a common operation. Every programming language provides its own set of modules and methods to do the file transfer operation. Python also provides several … Read more

IndexError: list index out of range [Solved]

What is IndexError in Python? In this tutorial, we will learn about how to fix error “IndexError: list index out of range”. In Python, the “IndexError” in general occurs whenever we try to access an index of a iterable(list, string and tuple) that does not exist. Iterables are zero-based wich means the first element is … Read more

Python Comparing Tuples [Step by Step Guide]

In this tutorial, we will learn about Python comparing tuples using step by step guide. In Python, tuple is a data structure which is also an iterable object. There are use cases or requirement in our day to day task where we have to do the comparison of different tuples. There are different built-in functions … Read more