Question: What is the correct way to run all the doctests in a given file from the command line?
- `python3 -m doctest <_filename_>`
- `python3 <_filename_>`
- `python3 <_filename_> rundoctests`
- `python3 doctest`
Answer: The correct answer of the above question is Option A:`python3 -m doctest <_filename_>`