0

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?

user3486184
  • 2,147
  • 3
  • 26
  • 28
Elmira
  • 11
  • 2
  • 3
    Here's the docs to collections: https://docs.python.org/3/library/collections.html. Yes it does belong to the standard library. – Torin M. Oct 25 '18 at 20:29
  • 2
    be careful though, your link is for python 2.x. nowadays python 3.x is the go. – Ali Yılmaz Oct 25 '18 at 21:01
  • Possible duplicate of [How to determine if a module name is part of python standard library](https://stackoverflow.com/questions/46441539/how-to-determine-if-a-module-name-is-part-of-python-standard-library) – mkrieger1 Oct 25 '18 at 22:18

0 Answers0