Python Program to replace a word with asterisks in a sentence

By Amruth Kumar

In this tutorial, we are going to learn how to replace a word in a word with asterisks in a sentence using Python. Replacing a word with asterisks in a string This program is very .... Read More

Use apply() function for a single column in Pandas

By yaswanth vakkala

Pandas is a popular Python library used for data analysis and data manipulation. It is an open-source, fast, easy-to-use, powerful library built on top of the NumPy library, which .... Read More

timezone converter in C++

By Karandeep Singh

Hey, guys today we are going to learn how to create a timezone converter in C++ using built-in functions only. Before starting with the code one should have basic knowledge of time.... Read More

C++ program to calculate the area of kite

By Karandeep Singh

Hey, guys today we are going to learn how to write a program to calculate the area of a kite. Before starting with the program, let us study the shape of the kite. Kite is a two-di.... Read More

How to Hide Navigation bar in SwiftUI

By shagrafnasheet

Sometimes there is some white space visible above your content in SwiftUI applications, even when you don’t set the navigation bar title. So this tutorial will guide you in h.... Read More

Sort array elements by length in Swift

By Aakanksha Thakar

This tutorial will show you how to sort an array of elements by a length in Swift. This type of sorting is done mainly on a string array to get a sorted array according to the elem.... Read More

How to access a super class variable in child class in Python

By Khushi Aswani

In this tutorial, we will discuss how to access a superclass variable in a child class in Python which comes under the OOPS concept of inheritance. We need to use the variable of a.... Read More

How to reload view in SwiftUI (after specific interval of time)

By shagrafnasheet

This tutorial will guide you on reloading a view in SwiftUI after a specific time interval. I will be using DispatchQueue to delay reloading the view for 1 min. And after 1 min it .... Read More

Related Posts