[code.view]

[top] / python / PyMOTW / fractions / fractions_create_integers.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2009 Doug Hellmann All rights reserved.
     #
     """
     """
     #end_pymotw_header
     
     import fractions
     
     for n, d in [ (1, 2), (2, 4), (3, 6) ]:
         f = fractions.Fraction(n, d)
         print '%s/%s = %s' % (n, d, f)
     

[top] / python / PyMOTW / fractions / fractions_create_integers.py

contact | logmethods.com