Write a Python program that will accept the base and height of a triangle and compute the area

preview_player
Показать описание
Hey Guys,

Welcome to my blog, In this video you will learn about Python Program To Find Area Of Triangle

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

Below is the formula to Find Area Of Triangle
============================
area = (base * height )/ 2

Below is the Python Program To Find Area Of Triangle
==========================
# python program to find area of triangle

base = float(input("Enter Base of Triangle : "))
height = float(input("Enter Height of Triangle : "))
area = (base * height) / 2

print("Area of Triangle is : ", str(area))

Thank you for watching this video.

Keywords
==================
Write a Python program that will accept the base and height of a triangle and compute the area,
#python, #basics, #coding, #python3, #triangle
Рекомендации по теме
visit shbcf.ru