[go: up one dir, main page]

0% found this document useful (0 votes)
17 views4 pages

Libraries

This document lists the standard libraries available in Python 3.13, excluding third-party packages. The libraries are organized alphabetically and include modules for various functionalities such as data handling, networking, and file operations. The total number of libraries listed is provided at the end of the document.

Uploaded by

imranriyaz377
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views4 pages

Libraries

This document lists the standard libraries available in Python 3.13, excluding third-party packages. The libraries are organized alphabetically and include modules for various functionalities such as data handling, networking, and file operations. The total number of libraries listed is provided at the end of the document.

Uploaded by

imranriyaz377
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

# This is a list of Python 3.

13 standard libraries (built-in modules)

# This does not include third-party packages like NumPy or Django

standard_libraries = [

#A

'abc', 'aifc', 'argparse', 'array', 'ast', 'asynchat', 'asyncio', 'asyncore', 'atexit', 'audioop',

#B

'base64', 'bdb', 'binascii', 'binhex', 'bisect', 'builtins', 'bz2',

#C

'calendar', 'cgi', 'cgitb', 'chunk', 'cmath', 'cmd', 'code', 'codecs', 'codeop',

'collections', 'colorsys', 'compileall', 'concurrent', 'configparser', 'contextlib',

'contextvars', 'copy', 'copyreg', 'crypt', 'csv', 'ctypes', 'curses',

#D

'dataclasses', 'datetime', 'dbm', 'decimal', 'difflib', 'dis', 'distutils', 'doctest', 'dummy_threading',

#E

'email', 'encodings', 'ensurepip', 'enum', 'errno',

#F

'faulthandler', 'fcntl', 'filecmp', 'fileinput', 'fnmatch', 'fractions', 'ftplib', 'functools',

1
#G

'gc', 'getopt', 'getpass', 'gettext', 'glob', 'grp', 'gzip',

#H

'hashlib', 'heapq', 'hmac', 'html', 'http',

#I

'imaplib', 'imghdr', 'imp', 'importlib', 'inspect', 'io', 'ipaddress', 'itertools',

#J

'json',

#K

'keyword',

#L

'lib2to3', 'linecache', 'locale', 'logging', 'lzma',

#M

'mailbox', 'mailcap', 'marshal', 'math', 'mimetypes', 'mmap', 'modulefinder', 'msilib', 'multiprocessing',

#N

'netrc', 'nis', 'nntplib', 'numbers',

2
#O

'operator', 'optparse', 'os', 'ossaudiodev',

#P

'parser', 'pathlib', 'pdb', 'pickle', 'pickletools', 'pipes', 'pkgutil', 'platform',

'plistlib', 'poplib', 'posix', 'pprint', 'profile', 'pstats', 'pty', 'pwd', 'py_compile',

'pyclbr', 'pydoc', 'pydoc_data', 'pyexpat',

#Q

'queue', 'quopri',

#R

'random', 're', 'readline', 'reprlib', 'resource', 'rlcompleter', 'runpy',

#S

'sched', 'secrets', 'select', 'selectors', 'shelve', 'shlex', 'shutil', 'signal', 'site', 'smtpd',

'smtplib', 'sndhdr', 'socket', 'socketserver', 'spwd', 'sqlite3', 'ssl', 'stat', 'statistics', 'string',

'stringprep', 'struct', 'subprocess', 'sunau', 'symtable', 'sys', 'sysconfig', 'syslog',

#T

'tabnanny', 'tarfile', 'telnetlib', 'tempfile', 'termios', 'test', 'textwrap', 'this', 'threading',

'time', 'timeit', 'tkinter', 'token', 'tokenize', 'trace', 'traceback', 'tracemalloc', 'tty', 'turtle', 'types',

'typing',

3
#U

'unittest', 'urllib', 'uu', 'uuid',

#V

'venv',

#W

'warnings', 'wave', 'weakref', 'webbrowser', 'winreg', 'winsound', 'wsgiref',

#X

'xdrlib', 'xml', 'xmlrpc',

#Z

'zipapp', 'zipfile', 'zipimport', 'zlib'

print("Total libraries:", len(standard_libraries))

You might also like