How to Print Lower Triangle Pattern using Python3?

By Priyam Sur

In this Python tutorial, we will learn how to print lower triangle pattern in Python. Let’s see how to print lower triangle pattern of matrix as well as we will print lower .... Read More

The conceptual understanding of operators in python

By Ishita Gupta

Hey there, let’s start from the basics of python. An operator is the smallest unit in python for performing operations on variables and values. There are various classificati.... Read More

String to Integer and Integer to String conversion in Java

By divyesh srivastava

In this Java tutorial, we are going to learn how to convert string to integer and integer to string using pre-defined functions in Java. So in the same tutorial post we will see ho.... Read More

Convert a nested list to an ordinary simple list in Python – Flatten a list

By Pavitra Walia

In this tutorial, we will be discussing the concept of flattening a list. By the end of the tutorial, you will be able to convert a nested list to an ordinary simple list in the sa.... Read More

Palindrome Check of a given word or number using python3?

By Priyam Sur

In this Python tutorial, we will learn how to check if a number or word is palindrome or not using Python. With this tutorial, you will also learn how to check palindrome ignoring .... Read More

Swap two strings with using substring( ) function in Java

By divyesh srivastava

In this Java tutorial, we are going to swap two strings using pre-defined substring() function in Java. What is substring() in Java? substring() method in Java operates in two ways.... Read More

Print Pattern – Codechef December Lunchtime 2018 Problem in Java

By divyesh srivastava

Problem Statement We are provided with an integer N. We have to print the N*N pattern like consider the following 4×4 pattern: 1 2 4 7 3 5 8 11 6 9 12 14 10 13 15 16 Algorithm to .... Read More

Text Wrap of given string and given width using Python

By Priyam Sur

In this Python tutorial, we will learn to text wrap of a given string and given width using Python. Easy and understandable Python code snippet is also provided. We hope it will he.... Read More