I have been asked to write code without using any of the Python external libraries (such as pandas).
I believe that https://docs.python.org/2/library/index.html describes only standard libraries. Is it true?
In particular, how can I confirm that when I use
from collections import Counter
that "collections" belongs to the standard library?