บทความนี้สอนเขียนภาษา Python หาพื้นที่สามเหลี่ยม สามารถเขียนโปรแกรมได้ดังนี้
สูตร หาพื้นที่สามเหลี่ยม
1 / 2 x ฐาน x สูง
โดยกำหนดให้ ฐานมีค่าเท่ากับ 6 และสูงมีค่าเท่ากับ 8
ตัวอย่าง
try:
base = float(input('Please enter base : '))
height = float(input('Please enter height : '))
except:
base = 0
height = 0
total = ((1/2) * (base * height))
print( 'Triangle area = %.2f' %total )
ผลลัพธ์
Please enter base : 6
Please enter height : 8
Triangle area = 24.0
โค้ดด้านมีการรับค่าฐาน (base) และสูง (height) จากนั้นนำตัวแปรทั้ง 2 มาเข้าสูตร 1 / 2 x ฐาน x สูง และพิมพ์ผลลัพธ์ออกมาด้วยคำสั่ง print ผ่านตัวแปร total