Format lors de la tournure flottante en chaîne

# Option one
older_method_string = "%.9f" % numvar
# Option two, preferred in Python 3
newer_method_string = "{:.9f}".format(numvar)
# Option 3 (versions 3.6 and higher)
newest_method_string = f"{numvar:.9f}"
Real Raccoon