Posts by Saruque Ahamed Mollick

Author Biographical Info: Hi, I am a co-founder of CodeSpeedy Technology Private Limited.
I am in love with technology, music and green places.

How to print string and int in the same line in Python

By Saruque Ahamed Mollick

This Python tutorial is on how to print string and int in the same line in Python. This is a very common scenario when you need to print string and int value in the same line in Py.... Read More

How to create multiplication table in Python

By Saruque Ahamed Mollick

This is a Python tutorial, where you will learn how to make multiplication table in Python. It’s very easy to create a multiplication table in Python if you understand the wo.... Read More

Difference between os.rename and shutil.move in Python

By Saruque Ahamed Mollick

In Python, there are many useful modules. os and shutil modules are two of those useful modules. Today we are going to learn the difference between os.rename and shutil.move in Py.... Read More

How to move a file from one directory to another in Python

By Saruque Ahamed Mollick

In this Python tutorial, we will see how to move a file from one directory to another in Python. We can achieve our goal to move a file from one folder to another using any of th.... Read More

Database CRUD Operation in Python with MySQL – Create, Retrieve, Update, Delete

By Saruque Ahamed Mollick

This Python database tutorial will help you to understand all the things you need to learn to implement CRUD operation in Python with MySQL. What is CRUD Operations in Python usin.... Read More

Delete Data From MySQL in Python – Delete rows, columns from MySQL Table

By Saruque Ahamed Mollick

This Python tutorial is focused on Delete data from MySQL Database in Python programming. That means we are going to learn the following things in this Python MySQL lesson. Delete.... Read More

UPDATE Data in MySQL Database table using Python

By Saruque Ahamed Mollick

This Python tutorial will focus on how to UPDATE MySQL Database table in Python. We will use the MySQL update query to update records in our database table. In Python, there are .... Read More

Fetch data from MySQL table in Python Program

By Saruque Ahamed Mollick

This Python tutorial is all about how to Retrieve data from MySQL Table in Python. Here we will be focusing on how to use SQL SELECT FROM Statement in Python Program. We will dis.... Read More

Related Posts