Posts by Asma Khan

Author Biographical Info: Just gimme a laptop, strong coffee and a big comfy teddy bear...

Secure Hash Algorithm (SHA) in Python

By Asma Khan

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

Send GET and POST requests in Python

By Asma Khan

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

Python program to interchange first and last elements in a list

By Asma Khan

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

Get the size of a file from URL in Python

By Asma Khan

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

Reverse words in a given string in Python

By Asma Khan

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

How to download files from URL using python?

By Asma Khan

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

How to get the size of a folder in Python?

By Asma Khan

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

Python program to create a class which performs basic calculator operations

By Asma Khan

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

Related Posts