How to Lock cells in OpenPyXL Python

By Isha Bansal

Hey fellow Python coder! In this tutorial, we will learn how to Lock cells in Python using the OpenPyXL library. We will start with some basic concepts of OpenPyXL, then move on to.... Read More

Calculate AUC With sklearn in Python

By Yathartha Rana

In this tutorial, we will explore the AUC (Area under the ROC Curve) and its significance in evaluating the Machine Learning model. We will also calculate AUC in Python using sklea.... Read More

Add color to a table (cell, row and column) in LaTeX

By Parvez Akhtar Pasha

In this tutorial, I will show you how to add color to a single cell, row, or column of a table in LaTeX. We use the xcolor package for normal colors but to add colors to the table .... Read More

Change the background color of a list in SwiftUI

By Samim

In this tutorial, we will see how to change the background color of a list in SwiftUI. We can change the background color of a list by hiding the default background using the scrol.... Read More

Not Equal (!=) Operator in Python

By Isha Bansal

In this tutorial, we will learn what Not Equal (!=) operator is in Python and how to make use of this operator in multiple ways in Python. Let’s get started! Understanding No.... Read More

How to create a Popup window using Java swing

By Saima Shamim

In this post, we will make a Popup window in Java Swing. Code: Popup window using Java Swing import javax.swing.*; import java.awt.*; public class PopupWindow { public static void .... Read More

Create an invisible character or text in LaTeX

By Parvez Akhtar Pasha

In this tutorial, I will show you how to create an invisible character or text in LaTeX. You can do this in three different ways. Horizontal phantom (\hphantom) Vertical phantom (\.... Read More

Menu in SwiftUI

By Samim

In this tutorial, we will see how to create a Menu in SwiftUI. A menu is similar to a list of options we see in apps or websites. It can be a dropdown list that appears when we cli.... Read More