Table of Contents

    Affichage et chaines de caractère formatées

    Liens :

    https://docs.python.org/fr/3/library/string.html#formatspec

    In [2]:
    a=12.456
    b=47
    
    In [6]:
    # Méthode 1
    
    print("On trouve ",a," et ",b)
    
    On trouve  12.456  et  47
    
    In [3]:
    # Méthode 2
    print("On trouve a:%f et b:%f"%(a,b))
    
    On trouve a:12.456000 et b:47.000000
    
    In [4]:
    # Méthode 3
    
    print("On trouve {} et {}".format(a,b))
    
    On trouve 12.456 et 47
    
    In [5]:
    # 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
    
    On trouve 12.46 et 47.00
    
    In [11]:
    import math
    print(f'The value of pi is approximately {math.pi:.3f}.')
    
    The value of pi is approximately 3.142.
    
    In [ ]: