PYTHON Write a Python program to print all even numbers between 1 to 100. – using while loop in reverse order. n = int(input("Enter the number :- ")) while...
PYTHON Write a Python program to input basic salary of an employee and calculate its Gross salary basic = int(input("Enter the basic salary :- ")) if basic
PYTHON Write a Program to Display the result of the Student with there Percentage and Grade rno = int(input("Enter the roll no :- ")) name = input("Enter the name...
PYTHON Write a Python program to calculate profit or loss. sp = int(input("Enter the Selling price :- ")) cp = int(input("Enter the Cost price :- ")) if (sp>cp): profit...
PYTHON Write a Python program to input any alphabet and check whether it is vowel or consonant. ch = input("Enter the Character to Check Vowel and Constant :-") if(ch=='a'...
PYTHON Write a Python program to input any character and check whether it is alphabet, digit or special character. ch = input("Enter the Character :-") if((ch >= 'a' and...
PYTHON Write a python program to enter P, T, R and calculate Simple Interest and Compound Interest. # Program to calculate Simple Interest and Compound Interest P = float(input("Enter...
PYTHON Write a Python program to enter length and breadth of a rectangle and find its perimeter and Area. len = int(input("Enter the Length of the Rectangle :-")) bre...
ECONOMICS CHAPTER 8: Producer’s Equilibrium 8.1 Introduction The objective of this chapter is to determine the “Equilibrium level of Producer”. Just as a consumer aims to maximise satisfaction ,...
Unit-1 : Fundamentals of Data Analytics INDEX 1.1 Exploratory Data Analysis (EDA) 1.1.1 Types of Exploratory Data Analysis:1.1.2 Univariate Analysis1.1.3 Bivariate Analysis1.1.4 Multivariate Analysis1.1.5 Handling Missing Data and Outliers...