Horje
area of parallelogram  Code Example
area of parallelogram
#program for finding area of parallelogram
height = int(input("Enter the height of the parallelogram"))
base=int(input("Enter the base of the parallelogram"))
Area = height*base
print("Area is: ", (Area))
.........................................................
#output:
Enter the height of the parallelogram
Enter the base of the parallelogram
Area is:  
----------------------------------------------------------




Python

Related
pseudocode examples for beginners Code Example pseudocode examples for beginners Code Example
python remove last 4 characters from string Code Example python remove last 4 characters from string Code Example
python snippets Code Example python snippets Code Example
how to measure how much your of cpu your program is using in python Code Example how to measure how much your of cpu your program is using in python Code Example
python get last element in dict Code Example python get last element in dict Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9