Posts by Asma Khan
Author Biographical Info: Just gimme a laptop, strong coffee and a big comfy teddy bear...
In this tutorial, we will learn about Secure Hash Algorithms (SHA) in Python. First, let’s check out the basics. The hash function: Hash function is used in cryptography to .... Read More
In this tutorial, we will learn to send get and post requests in Python. The GET and POST are two most used HTTP(Hypertext Transfer Protocol) methods. GET and POST requests in Py.... Read More
In this tutorial, we will learn how to interchange or swap first and last element of a list in python. This problem can be solved using basic techniques. This task asks you to in.... Read More
In this tutorial, we will learn how to get the size of a file from URL in python. Before getting on to the actual code, let us see some prerequisites for the same. If you want to g.... Read More
In this tutorial, we will learn how to reverse words of a string given by the user in python. Before getting on to the actual code, let us learn some string methods. split() method.... Read More
In this tutorial, we will learn how to download files from URL using python. Before getting on to the actual code, let us see some prerequisites for the same. Requests module As we.... Read More
In this tutorial, we will learn how to get the size of a folder in Python. Let us first see some prerequisite required for this code. The OS module in Python enables us to interact.... Read More
In this module, we will learn to create a class which performs basic calculator operations in Python. Being an object-oriented programming language, python stresses on concepts lik.... Read More