สอนเขียน Python ปัดเศษลง โดยใช้คำสั่ง floor จาก class math สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python ปัดเศษลง
import math
a = 10.9
b = 4.2
print( 'before floor')
print( 'a = '+str(a) )
print( 'b = '+str(b) )
print( 'after floor')
print( 'a = '+str(math.floor(a)) )
print( 'a = '+str(math.floor(b)) )
ผลลัพธ์
before floor
a = 10.9
b = 4.2
after floor
a = 10
a = 4
จากโค้ดด้านบนมีตัวแปร a = 10.9 และ b = 4.2 กรณีต้องการปัดเศษลงแนะนำให้ใช้คำสั่ง floor จาก class math ตามตัวอย่าง จาก 10.9 เป็น 10 และ 4.2 เป็น 4 ตามลำดับ