In this tutorial, we will learn about the Python index() method with the help of examples. I also let you know how to do the same thing using find() method.

How To Delete File If Exists In Python
In this article, we’ll learn here how to delete a file if exist using python. we’ll look at how to use os.remove() and os.ulink to remove a file if it’s the only one that exists.

Convert Python Dictionary To JSON
This python tutorial help to convert Python Dictionary To JSON. The JSON is a very popular format to exchange data between server and client.

How To Install Package pip in Windows
In this article, we will discuss how to install a PIP package in the widnows. PIP is the default package manager for the Python programming language.

Pip Install: Install and Remove Python Packages
In this article, we will discuss how to install a package in the Python using PIP. PIP is the default package manager for the Python programming language.

How to Use Python super() function
The Python super() is a built-in Python function that returns objects represented in the parent’s class. The object of the superclass that allows you to call that superclass’s methods.

How to Use Numpy Random Choice
in this python tutorial, You can learn how to use np.random.choice method with an example. The numpy has numerous helpful functions that make it possible to effectively perform mathematical operations over an array.

Python Zip With Example
This python tutorial help to understand Python’s zip() function with example. The zip() is a built-in Python function that accepts any type of iterable and returns us an iterator of tuples. This method creates an iterator that will aggregate elements from two or more iterables. The Syntax of Python Zip : If the passed iterators […]

Change default python 2.7 to python 3 in Ubuntu
This is a very common issue for python beginners, This tutorial help to change the python version from python 2.7 to python 5. By default Ubuntu have inbuilt python 2, We need to upgrade python 3, there is no difference between python 2 and python 3.

Number round floats Using Python
This python tutorial help to round float number using python 3. Python has a built-in function round() in Python. It returns x rounded to n digits from the decimal point.