Removing a string from a list of strings in Python

By Ranjeet V

In this tutorial, we are going to learn how we can remove a given string from a list of strings in Python. We will be doing this in Python. Let’s see how we can do this. Ways.... Read More

Creating our own packages in Java with example

By Ranjeet V

This tutorial is about creating our own package in Java. First, let us understand, What are the packages? A package is a collection of different classes, sub-packages and interface.... Read More

Reloading a module in Python

By Ranjeet V

Sometimes when you are testing a script in Python, you may need to make changes in your code and then reload the module. In such cases, reload() can be very helpful. The syntax for.... Read More

How to implement Linked List in C++

By Amit Razdan

In this post, I am going to discuss the implementation of the linked list in C++ programming language. There are many types of data structures one of the most important of those is.... Read More

How to pass an array by reference in C++

By Amit Razdan

In this post, we will understand about passing an array by reference in the C++ programming language. We will see the example code also for this task. Passing an array by reference.... Read More

numpy.ones() and numpy.ones_like() in Python

By Yash Dixit

In this tutorial we will understand numpy.ones() and numpy.ones_like() in detail. We will understand the difference between them and also how to implement each of them with all the.... Read More

Scramble Strings in a given Python List

By Karun Thannickal

In this tutorial, we will look at how to scramble strings in a given Python list. We will look at a simple implementation of this task in Python. We will make use of the sample() .... Read More

Difference between various implementation of Python

By Harini Madduri

In this tutorial, you are going to learn what is the difference between the various implementation of Python. There are different types of implementation in Python. They are Python.... Read More