print('-----Float Datatype-----') # Bydefault Numbers are align to the left print("11: {:f} If we provide precission by defaut it wi take 6 digit after point ".format ...
print("%.1e" % 9.99) # round up with positive exponent print("%.1e" % 0.999) # round up with negative exponent ...