Alert, prompt, confirm in JavaScript

By Samim

In this tutorial, I will discuss alert, prompt, and confirm in JavaScript. We will see how alert, prompt, and confirm work. These are built-in JavaScript methods. In the browser, t.... Read More

Xcode Debug Console Area not Showing or Missing – Fixed

By Saruque Ahamed Mollick

I faced this issue a few days back and I tried to figure out how to bring back the debug console area on Xcode. I think this is my shortest tutorial, as I will be telling you one s.... Read More

How to print in debug console on Xcode – Swift

By Saruque Ahamed Mollick

There is no special technique to print something in the debug console of Xcode while dealing with SwiftUI or StoryBoard. You can simply use the print statement. print("Hey print th.... Read More

Create a Countdown in Java

By Mitun Kumar Sahu

Generally, a backward counting starting from any number to zero in a fixed interval of time(in seconds) is called a countdown. It is mostly used in exams and all to show the time r.... Read More

Iterate through columns using iter_cols of openpyxl

By Sadhu Meghana

In this tutorial, we will learn how to iterate through columns in an excel sheet in Python. To achieve this, we use the iter_cols() method of openpyxl module. Python provides the o.... Read More

Find the index of value in Numpy Array

By Aditi Deo

In this tutorial, we are going to learn how to find the index of the value in Numpy Array in Python using two methods. We will initially apply the numpy.where() method on a 1D arra.... Read More

Check if a linked list is a palindrome in Python

By Karshin Uppal

Here in this tutorial, we will learn how to check if a linked list is a palindrome or not in Python. We can check if the given linked list is palindrome or not by returning 1 if it.... Read More

Transform Pandas columns using map and apply

By Sadhu Meghana

In this tutorial, we will use map() and apply() methods to transform Pandas columns. While working with datasets, there will be many situations where you need to transform and mani.... Read More

Related Posts