1.

Python program to findarea of equalteral triangle

Answer»

#PythonExplanation:from MATH IMPORT sqrta = INT(input("Enter side " ))area = SQRT(3)/4 * (a**2)print(area)



Discussion

No Comment Found