Posted in allcategorites programs in python

Python | Making a chain of function decorators (bold italic underline etc)

Output: Explanation: Here in this program, we defined three functions and in each function, we added the tags for bold, italic and underline respectively. A…

Continue Reading
Posted in allcategorites programs in python

Python | Access function inside a function

Let us take a look at how this can be done in Python. Example 1: Explanation: We define inner functions—also referred to as nested functions—within…

Continue Reading
Event Management System Project in Python
Posted in allcategorites gui python projects python projects

Event Management System Project in Python

In this article, we will create Event Management System Project in Python with source code. Using this event management system, one can easily maintain ticket…

Continue Reading
ATM machine program in C++
Posted in allcategorites c and cpp

ATM machine program in C++

In this article, we will build an ATM machine program in C++ that will have all the basic functionalities of an ATM. This project is…

Continue Reading
Posted in allcategorites programs in python

Python | Create a function with a pass statement

Today, in this article we will be learning about a Python Program to create a function with a pass statement. Before moving on to the…

Continue Reading
Posted in allcategorites programs in python

Python | Function to calculate the square root of a number

Let us look at the methods we have to calculate the square root of a number. Here we will use functions. In the first method,…

Continue Reading
Posted in allcategorites programs in python

Python | A function that calculates the power of a number

Let us take a look at how to code for this program. We have some built-in functions and other than that we will also take…

Continue Reading
Posted in allcategorites programs in python

Python | A function that accepts 2 integers and adds them and returns their sum

Here we will go through two methods that are there to solve this problem. Let us take a look at each of them. Method 1:…

Continue Reading
Posted in allcategorites programs in python

Python | Function that takes a list of integers and returns the last integer

Let us now take a look at the different ways in which we can solve this problem. Here we will be using the concept of…

Continue Reading
Posted in allcategorites programs in python

Python | Return multiple values from a function

Explanation: Once we defined the function and if we want to return multiple values then we simply use the return keyword along with the values…

Continue Reading