[PIPython] arrotondamento
Nicola Larosa
nico
Ven 19 Nov 2004 15:16:54 CET
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
>> Non riesco ad ottenerer dall'ultimo -print- un valore arrotondato
>> all'unita'.
> print "Il valore totale della resistenza : %d" (1.0/sum)
Quasi giusto. :-) Questo è il valore *troncato*, non arrotondato.
>>> 1.0/0.06
16.666666666666668
>>> '%d' % (1.0/0.06)
'16'
>>> '%d' % (round(1.0/0.06))
'17'
ergo:
print "Il valore totale della resistenza : %d" (round(1.0/sum))
- --
Nicola Larosa - nico a tekNico.net
With Twisted, you don't need threads. You don't want threads. Threads
are actually harmful: http://www.kuro5hin.org/story/2002/11/18/22112/860
-- Jonathan Lange, August 2004
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
iD8DBQFBdQPvXv0hgDImBm4RAg5JAKCZyk9m3zu8WrpfUmehHUejJpRtKQCgxbmI
+VHBx3jzn4oZjsJl/+S93DA=
=IaWy
-----END PGP SIGNATURE-----
More information about the Python
mailing list