# 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))