Posts by Sumit Chhirush
Author Biographical Info: Not available
Hello programmers, in this tutorial, we will learn how to concatenate tuple elements in Python. The tuple is immutable but we can concatenate two tuples using the sum() function an.... Read More
Hello programmers, in this tutorial, we will learn how to remove the last element from a tuple in Python. As a tuple is an immutable object, thus we can not modify it. So we can do.... Read More
Hello programmers, in this tutorial, we will learn how to Find an element in Python Tuple by value. 1. Index() method The index () method returns the index number of 1st element in.... Read More
Hello programmers, in this tutorial, we will learn how to get first N key:value pairs of a dictionary in Python. we have a dictionary with keys and values d={‘a’:1,R.... Read More
Hello programmers, in this tutorial, we will learn how to find the index of a particular word in Python. index(): It is a Python list method used to find the index of a particular .... Read More
Hello programmers, in this tutorial, we will learn how to Perform Data Binning in Python. Data Binning: It is a process of converting continuous values into categorical values. Let.... Read More
Hello programmers, in this tutorial, we will learn how to refresh or reload a webpage in selenium Python. Today I’m helping you with how to reload a webpage that is already o.... Read More
Hello programmers, in this tutorial, we will learn how to count the number of words in a PDF file in Python. For counting the numbers of words in a PDF, we are using the PyPDF2 mod.... Read More