[code.view]

[top] / python / PyMOTW / math / math_constants.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2010 Doug Hellmann.  All rights reserved.
     #
     """Constants in the math module.
     """
     #end_pymotw_header
     
     import math
     
     print 'π: %.30f' % math.pi
     print 'e: %.30f' % math.e
     

[top] / python / PyMOTW / math / math_constants.py

contact | logmethods.com