Ask Your Question

Kevin Cox's profile - activity

2015-03-11 12:15:50 +0100 received badge  Teacher (source)
2015-03-11 12:15:50 +0100 received badge  Necromancer (source)
2015-03-10 23:50:08 +0100 answered a question formatting numbers in sagetex

I find that the easiest way to to convert to a python floating point before printing.

float(24/5)          #-> 4.8
"%.4f" % float(26/3) #-> 8.6667