Imprima até 1 lugar decimal python

print("{:.1f}".format(number)) # Python3
print "%.1f" % number          # Python2
Amused Antelope