Cetak Hingga 1 Tempat Desimal Python

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