Python program to compute the area of triangle
Link to all related video in the playlist "Python quick and dirty sample source code"
https://dailymotion.com/playlist/x74cx0
source code
b = int(input('Enter base: '))
h = int(input('Enter heigh: '))
area = b * h / 2
print('area:', area)
Bình luận