Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

area of trapezium

height = float(input("Height of trapezoid: "))
base_1 = float(input('Base one value: '))
base_2 = float(input('Base two value: '))
area = ((base_1 + base_2) / 2) * height
print("Area is:", area)
Comment

area of trapezium

Area of a trapezium (trapezoid) = (Base1 + Base2) / 2 * height
Comment

area of trapezium formula

Area of trapezium (UK) or trapezoid (US) =  (sum of parallel sides) / 2 * height
Comment

how to find area of a trapezium

Area = (top+bottom / 2) * height
Comment

area of trapezium

1/2*h(a+b)
Comment

PREVIOUS NEXT
Code Example
Python :: how to reindex columns in pandas 
Python :: load pt file 
Python :: python dictionary to list 
Python :: python module install a whl 
Python :: python split string into floats 
Python :: how to make chrome extension in python 
Python :: python script in excel 
Python :: python json random number generator 
Python :: python dictionary 
Python :: how to add in python 
Python :: bringing last column to first: Pandas 
Python :: Display the data types of the DataFrame 
Python :: urllib download file to folder 
Python :: add two column values of a datframe into one 
Python :: numpy delete 
Python :: django queryset exists 
Python :: convert string to lowercase python 
Python :: python namespace 
Python :: tkinter dialog box 
Python :: django insert template in another template 
Python :: matplotlib figure size not working 
Python :: tkinter icon 
Python :: cv2.copyMakeBorder 
Python :: mypy clear cache 
Python :: countplot for different classes in a column 
Python :: Program to Compute LCM 
Python :: discordpy owner only command 
Python :: python try except finally 
Python :: python extract substring 
Python :: convert generator to list python 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =