Skip to content
Snippets Groups Projects
Select Git revision
  • 550d435a2008fc0eef83cb0d30fdb53c32de264f
  • master default protected
2 results

graph-labyrinthe.py

Blame
  • Forked from Vuillemot Romain / INF-TC1
    Source project has a limited visibility.
    06-script.py 283 B
    # 6 Créer un script Python indépendant
    
    from racines import trinome;
    print(trinome(2.0, -4.0, 2.0))
    
    
    # --- Partie Principale ---------
    print(trinome(1.0, -3.0, 2.0))
    print(trinome(1.0, -2.0, 1.0))
    print(trinome(1.0, 1.0, 1.0)) 
    
    """ On obtient 
    (2, 1.0, 2.0)
    (1, 1.0)
    (0,)   """