mattia wrote:
Another question (always py3). How can I print only the first number after the comma of a division?
e.g. print(8/3) --> 2.66666666667
I just want 2.6 (or 2.66)

Are you sure you don't want that to be 2.7 or 2.67? Then you can use:
n = int(n * 10**2) / 10**2
else if 2.7 pr 2.67 is what you wanted, you could use:
n = round(n, 2)
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to