Swapping : • Python program to interchange first and la... Print String with Delay of 3 sec : • Write a Python program to print a string f... Adding Matrix: • Adding Matrices in Python Subtracting Matrix: • Subtracting Matrices in Python
Python program to find Area and Perimeter of right Angle Triangle.
Thankyou for watching
def Ar_of_Right_Angle_Triangle(base, height, hypotenuse):
area = base*height*0.5
Perimeter = base+height+hypotenuse
return area, Perimeter
print(Ar_of_Right_Angle_Triangle(5,10,8))
#python #programming #coding #programmer #developer #code #software #tech #pythonproblem #function