Imprima hasta 1 decimal Place Python

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