Hi, I'm new to Python,
I don't know how to make my program detect some additional arg. parameters. For example, normally we type:
python filename.py
to run the program. But if we have additional parameter such as:
python filename.py -a
and I want my program to be able to detect that "-a" so it will perform some additional function. How do I do that? I try to find in google, but I couldn't find anything on that. So please help me >_<
Thx.