Python string format() method

By Rahul Yadav

In this blog, we are going to learn Python format() function with their implementation. So if you have learned C, JAVA, or  C++  before studying Python you know we used %c, %s, a.... Read More

TabView and TabItem() in SwiftUI

By shagrafnasheet

In this tutorial, We’ll learn how to implement TabView in SwiftUI. TabView works the same as UITabBarController. Whenever we want to show more views on the same screen the ea.... Read More

Reading and Parsing a tsv file in python

By Rahul Yadav

In this Python tutorial, we are going learn Reading and Parsing a TSV file in Python. In Python, there are two types of files usually used to load the dataset which is tsv and CSV .... Read More

Reverse Rows in Pandas DataFrame in Python

By yaswanth vakkala

In this tutorial, let’s see how to reverse rows in Pandas DataFrame in Python because you might encounter situations where reversing rows in a DataFrame is needed. Pandas is .... Read More

Round up to nearest power of 2 in C++

By Mahak Chawla

In this tutorial, we will learn how to round off a given number to the nearest power of 2 in C++. For example, Input: n= 19 Output: 16 There can be two cases. The power of 2 can be.... Read More

Remove a specific character from a string in Swift

By Ashutosh Dhanwe

In this tutorial, we will learn how to remove a specific character from a string in Swift with a simple example. How to remove a specific character from a string in Swift To remove.... Read More

How to terminate program in C++

By Karandeep Singh

Hey, guys… Today we are going to learn how to terminate a program in C++. We can terminate a program in C++ in different methods that are listed below: By using exit() functi.... Read More

Go to a new view in SwiftUI

By shagrafnasheet

This SwiftUI tutorial will help you to learn to navigate to a new view in SwiftUI. We’ll be accomplishing this using the Navigation view and Navigation link. It will send the.... Read More