arguments~20171216-193140.py 515 B

1234567891011121314151617
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import sys
  4. def obtenir ( option, fallback=False ) :
  5. '''String -> String/Boolean
  6. Si l'option demandée n'existe pas, renvoie False.
  7. Si l'option demandée existe'''
  8. if option in sys.argv:
  9. index = sys.argv.index( option ) + 1
  10. if len( sys.argv ) > index :
  11. print type( sys.argv[ index - 1 ])
  12. print type( sys.argv[ index ])
  13. print sys.argv[ index ]
  14. return sys.argv[ index ]
  15. return fallback