I wondered if there is a way - didn't find in on the internet but I heard it was possible- to get many parameters in a python script as a combination of letters ? I explain myself : if the user wants to send many optional parameters Example : If the options are tiger, frog, cat and dog: instead of writing
python ./myScript.py --tiger --frog --cat --dog
To write :
python ./myScript.py --tfcd
Is there a way to do that ?
Thanks