Drucken Sie bis zu 1 Dezimalplatz Python aus

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