python

IntEnum in python explanation with example

Python IntEnum can be used to create enumerated constants with subclass of int. We can use this method to create enumeration based on integers in python.

Read
dart

Dart program to swap two user given numbers

Dart program to swap two user input numbers. The program will take the numbers as input from the user, swap them and print the swapped values.

Read
dart

Different ways to remove items from a dart list

Different ways to remove items from a dart list. Learn how to remove single item, multiple items, remove items at specific index, remove the last item, remove items in range and remove items based on a function.

Read
dart

Different ways to insert items to a list in dart

Different ways in dart to insert single or multiple items to a dart list. Dart provides a couple of ways to insert items to a list that we will learn in this post.

Read
c#

C# program to check if a number is Strong number or not

C# program to check if a number is strong number or not using user input. A number is called a strong number if the sum of all factorials of digits is equal to the number.

Read
C++

C++ program to add two numbers

C++ program to add two numbers. This program will ask the user to enter both numbers and print the sum of these two numbers.

Read
kotlin

6 ways to add items to a list in Kotlin with examples

How to add items to a list in kotlin. This post will show how to add single or multiple items to a kotlin list in 6 different ways.

Read
dart

Dart program to change single or multiple list item

Dart program to change single or multiple items of a list. We can modify a list in different ways in Dart. This post will show you different ways to change single/multiple items of a list.

Read
python

Python string upper() method explanation with example

Learn how to use Python string upper() method. upper() is used to convert each character of a string to upper case in python. This post will show you how to use upper with example.

Read
python

Python string lower() method explanation with example

Python string lower method explanation with example. lower() method is used to convert a string to lowercase. This post will show you how to use python string lower() method.

Read