Author: Rabecca Fatima
-
C++Factorial of a given Number
What is Factorial of a number? The product of all positive descending integers is the factorial of n. n! represents…
November 23, 2022
-
C++Armstrong Number in C++
What is Armstrong Number? The Armstrong number is a number that is equal to the sum of its digits’ cubes….
November 23, 2022
-
PythonStrings in Python
A Python string is a collection of characters enclosed by single, double, or triple quotes. The string is an immutable…
November 23, 2022
-
PythonString Functions in Python
Built-in String Functions: Many functions are built into the Python interpreter and are always available. You’ll see a few that…
November 24, 2022
-
PythonString Functions – II
Table of Python String Methods. Function Name Description capitalize() The string’s first character is changed to an uppercase (capital) letter….
November 24, 2022
-
PythonPython Lists
As we have already seen in Data Types in Python that Python Lists are just like dynamically sized arrays, declared in…
November 25, 2022
-
PythonIterate over a list in Python
In Python, there are several different ways to iterate through a list. Let’s examine every method for iterating over a…
November 26, 2022
-
C++Find the Reverse of a Number
When a number is reversed, the digits are rearranged in reverse order, starting with the last digit, then the second-to-last…
November 27, 2022
-
PythonRemove elements from a Python List
There are three methods to remove elements from a list: Making use of the remove() method Using the pop() method…
November 27, 2022
-
PythonPython Dictionary
Python Dictionary is used to store the data in a key-value pair format. Python’s dictionary data type can mimic real-world…
November 29, 2022
-
PythonPython Dictionary Methods
Let’s look at some crucial features that are very useful when experimenting with dictionaries in Python. Python Dictionary Methods: Functions…
November 30, 2022
-
PythonPython Tuple
What is Python Tuple? A Python Tuple is a group of items that are separated by commas. The indexing, nested…
December 1, 2022