PYTHON Write a Python program to input all sides of a triangle and check whether triangle is valid or not. a = int(input('Please Enter the First Angle of a...
PYTHON Write a python program to calculate Surface Area and Volume of a Cuboid. length = float(input('Please Enter the Length of a Cuboid: ')) width = float(input('Please Enter the...
PYTHON Write a python program to calculate Area of a triangle with Base and Height base= float(input("Enter the base of a Traigle : -")) height= float(input("Enter the height of...
PYTHON Write a python program to print multiplication table of any number num = int(inputsplay multiplicn table of? ")) for i in rang 11): print(num, 'x', i, '=', num*i)...
PYTHON Write a Python program to find sum of all odd numbers between 1 to n. n = int(input("Enter the Starting number :- ")) m = int(input("Enter the Ending...
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'...