Liens :
a=12.456
b=47
# Méthode 1
print("On trouve ",a," et ",b)
# Méthode 2
print("On trouve a:%f et b:%f"%(a,b))
# Méthode 3
print("On trouve {} et {}".format(a,b))
# Méthode avec formatage (par exemple affichage à 0,01 près)
print(f"On trouve {a:.2f} et {b:.2f}") # f indique une option de format
import math
print(f'The value of pi is approximately {math.pi:.3f}.')