Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
7486 Tampilan

i to all,

how to round 2 decimals, even if the value are 00

example : 12.00 

can i do this on python

regards 

Avatar
Buang

We can achieve using python using help of "%.2f" format specifier. Can you explain more your requirement ? where you want to put 2 decimal ? i.e. inside any report or inside any web form etc...

Jawaban Terbai

Python only displays what's needed, so it displated 10.0

If it's the matter of printing it as 10.00.

To do that.

>>> d = 10
>>> print "Value: %.2f" % float(d)
Value: 10.00
>>>

Hope this will help you.

Avatar
Buang
Penulis

thanks Parikshit :)

Post Terkait Replies Tampilan Aktivitas
1
Jan 24
4556
1
Agu 15
3227
2
Mar 15
4537
1
Mar 15
31859
1
Mar 15
3868