I need to know something about modules | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 1

I need to know something about modules

How do I know, what functions and what methods some modules have and what they do? How can I create modules? (Python 3)

21st May 2018, 8:07 AM
Seb TheS
Seb TheS - avatar
1 Antwort
+ 9
Here is Python's Standard Library: https://docs.python.org/3/library/ You can look up individual modules there, e.g. urllib https://docs.python.org/3/library/urllib.html Note that you can access the source code there too, e.g. https://github.com/python/cpython/tree/3.6/Lib/urllib/ See the Python Package Index (PyPI) for more: https://pypi.org Here are some codes: https://code.sololearn.com/c5XZp2CNCWxK/?ref=app https://code.sololearn.com/c071JeXy6LcW/?ref=app https://code.sololearn.com/cLF0P3C3eZ52/?ref=app
21st May 2018, 8:35 AM
David Ashton
David Ashton - avatar