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 get first N items from a list in Python

By Saruque Ahamed Mollick

Hello Python learner, I know, you are here to learn how to get the first N items from a list in Python. So, I will show you an easy way to fetch the first n number of items from a .... Read More

Delete an Item from a list in Python

By Saruque Ahamed Mollick

To delete an item from a list in Python we can use remove() method and del keyword. Here we will learn how to remove or delete an item from a list in Python with some easy example.... Read More

Increment Operator in Python because ++ operator does not work in Python

By Saruque Ahamed Mollick

This Python tutorial will be helpful for curious Python learners. If you are familiar with other programming languages before Python then you must know that most of programming lan.... Read More

How to make a flat list out of list of lists in Python

By Saruque Ahamed Mollick

In this Python tutorial, I will show you how to make a flat list out of list of lists in Python with the help of the code example. We know that a list can contain multiple elements.... Read More

How to Escape single quotes in JSON encoded HTML5 data attributes

By Saruque Ahamed Mollick

In this tutorial we gonna learn how to escape single quotes in JSON encoded HTML5 data attributes. This is very easy to understand. Here is some basic info on HTML5 data attribute..... Read More

Add item to a specific position in list Python Programming

By Saruque Ahamed Mollick

In this tutorial, we are going to learn how to add an item to a specific position in a list in Python. We can do this by using the below methods: list.insert() List slicing  .... Read More

How to add items to list in Python

By Saruque Ahamed Mollick

This Python tutorial will help you to learn how to add items to a list in Python programming. To make this tutorial easy to understand we will show you adding elements to list in P.... Read More

How to escape from \n newline character in Python

By Saruque Ahamed Mollick

This Python tutorial is all about how you can escape newline character from a string in Python. If you are willing to print \n in Python it will create a new line instead of print.... Read More

Related Posts