Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะปัดเศษตัวเลขลอยตัวโดยใช้ Python ได้อย่างไร


ฟังก์ชัน round() ในไลบรารีของ Python จะปัดเศษตัวเลขตามตำแหน่งที่กำหนด ต่อไปนี้เป็นE ตัวอย่าง .

>>> round(11.6912,2) # upto second decimal place
11.69
>>> round(11.6912,1) # upto first place after decimal point
11.7
>>> round(11.6912) # rounded to nearest integer
12
>>> round(11.6912,-1)#rounded to ten's place
10.0