P-Assignment 12: Functions
Hi,
- Write a “Python” Program to find the addition of two numbers using functions
- Write a “Python” Program to find the subtraction, multiplication, division of two numbers using functions.
- Write a “Python” Program to find the sum of three numbers using function
- Write a “Python” Program to find the maximum element among three numbers using function
- Write a “Python” Program to find the minimum element among three numbers using function
- Write a “Python” Program to find the factorial of a given number using function.
- Write a “Python” Program to check whether a given number is even or odd using function.
- Write a “Python” Program to check whether a given number is prime or not using function.
- Write a “Python” Program to get the Fibonacci series of a given number using function.
- Write a “Python” Program to check the given number is palindrome or not using function.
- Write a “Python” Program to print the absolute value of a given number using function.
- Write a “Python” Program to print the factorial of a given number using recursion.
- Write a “Python” Program to print the Fibonacci series of a given number using recursion.
- Write a “Python” Program to print the sum of the elements in a list using function.
- Write a “Python” Program to print the reverse of a string using function. Do not use string functions.