Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # encoding: utf-8
  3. #
  4. # Copyright (c) 2009 Doug Hellmann All rights reserved.
  5. #
  6. """
  7. """
  8. #end_pymotw_header
  9.  
  10. import sys
  11.  
  12. print 'Version info:'
  13. print
  14. print 'sys.version =', repr(sys.version)
  15. print 'sys.version_info =', sys.version_info
  16. print 'sys.hexversion =', hex(sys.hexversion)
  17. print 'sys.subversion =', sys.subversion
  18. print 'sys.api_version =', sys.api_version
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement