Author name: Konakanchi harshith

Creating a calculator using if/else statements in python We can build the calculator using the if-else statement in python. but,me can performance any of the mathematical operation in it like(+,-,×,÷,%). The output of the program will be performs the mathematical operation based on the user selection only.the user can select any one of the mathematical …

Read More »

Exception handling in python 1. An exception is an error that happened during the execution of program. 2. The python programming provides the exception handling during the execution of the                   program. 3.  This exception are handled by using try,except and final statements. Try and except statement 1. …

Read More »

INHERITANCE in python 1.   Inheritance allows us to define a class that inherits all the methods and properties from the          another class 2.  The “pass” keyword is used for Inheritance in python 3.  It’s a core concept of object oriented programming system in python 4.  They are different types of Inheritance …

Read More »

Random forest algorithm 1.  It is used in machine learning algorithm 2. It combines the output of multiple decision trees to reach a single result 3.  It’s handles both Classification and regression problems in a data Python program to data set using random forest algorithm Here I am taking the data set in a xlsx …

Read More »

Scroll to Top