arguments~20171216-193017.py 389 B

123456789101112
  1. import sys
  2. def obtenir ( option, fallback=False ) :
  3. '''String -> String/Boolean
  4. Si l'option demandée n'existe pas, renvoie False.
  5. Si l'option demandée existe'''
  6. if option in sys.argv:
  7. index = sys.argv.index( option ) + 1
  8. if len( sys.argv ) > index :
  9. print type( sys.argv[ index - 1 ])
  10. return sys.argv[ index ]
  11. return fallback