We can use the sort() function to sort the list in descending order. Syntax: list.sort(key=…, reverse=…) key – function that serves as a key for the sort comparison reverse – If True, the sorted list is in descending order It doesn’t return any …
There are many built-in functions in Python for sorting a list. But this article covers the topic of sorting a list alphabetically in python without using sort function. Among the various sorting algorithms, we are using quicksort here. Output:
In this article, we will learn to set precision in Python There are many ways to set precision of floating point value. Some of them is discussed below. ‘%’ – ‘%’ operator is used to format as well as set …
In this article, we will learn to send SMS using Python with the help of Fast2SMS Service. There are many online services which provide API for the sending free SMS like Twilio ,way2sms , Fast2sms etc. Twilio is the most …
LinkedIn is one of the largest professional social media websites in the world and is a good source of social media data and job data. Using web scraping you can gather these data fields for performing analysis. Using Python you can make this process smoother. …
In this article, we will discuss how to sort an array in Python. An array is a collection of elements of the same data type. Output:
In this article, we will see how to shuffle a list in Python. There are more than one way to achieve this. We will see various methods for shuffling a list Using random.shuffle() In the random library of Python, there …
Ok, so you have written a Python code and now you want to save that code as a Python file for future references. This article will help you for the same, also for “how to save python program”. Assume that …
In this article, we will learn how to run Python programs on Sublime Text 3 editor. Sublime Text 3 Editor is a popular light weight, cross platform editor. I’ve created a simple addition function in sublime and saved it in …
In Python, there are built-in methods for reversing a string. But sometimes you will be asked specifically to reverse a string without using any of the functions. In this article, we will learn to reverse a string without using reverse …