[code.view]

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

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

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

contact | logmethods.com