Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 41 - 50 of 118 for host:docs.python.org (0.03 sec)

  1. unittest.mock — mock object library — Python 3....

    Source code: Lib/unittest/mock.py unittest.mock is a library for testing in Python. It allows you to replace parts of your system under test with mock objects and make assertions about how they hav...
    docs.python.org/3/library/unittest.mock.html
    Registered: Fri May 17 03:42:38 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 388.8K bytes
    - Viewed (0)
  2. 3. Data model — Python 3.12.3 documentation

    Objects, values and types: Objects are Python’s abstraction for data. All data in a Python program is represented by objects or by relations between objects. (In a sense, and in conformance to Von ...
    docs.python.org/3/reference/datamodel.html
    Registered: Fri May 17 03:42:44 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 397.9K bytes
    - Viewed (0)
  3. Built-in Exceptions — Python 3.12.3 documentation

    In Python, all exceptions must be instances of a class that derives from BaseException. In a try statement with an except clause that mentions a particular class, that clause also handles any excep...
    docs.python.org/3/library/exceptions.html
    Registered: Fri May 17 03:45:03 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 136.8K bytes
    - Viewed (0)
  4. datetime — Basic date and time types — Python 3...

    Source code: Lib/datetime.py The datetime module supplies classes for manipulating dates and times. While date and time arithmetic is supported, the focus of the implementation is on efficient attr...
    docs.python.org/3/library/datetime.html
    Registered: Fri May 17 03:46:35 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 389.4K bytes
    - Viewed (3)
  5. 2. Lexical analysis — Python 3.12.3 documentation

    A Python program is read by a parser. Input to the parser is a stream of tokens, generated by the lexical analyzer. This chapter describes how the lexical analyzer breaks a file into tokens. Python...
    docs.python.org/3/reference/lexical_analysis.html
    Registered: Fri May 17 03:47:25 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 106.1K bytes
    - Viewed (0)
  6. tarfile — Read and write tar archive files — Py...

    Source code: Lib/tarfile.py The tarfile module makes it possible to read and write tar archives, including those using gzip, bz2 and lzma compression. Use the zipfile module to read or write.zip fi...
    docs.python.org/3/library/tarfile.html
    Registered: Fri May 17 03:46:20 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 181.1K bytes
    - Viewed (0)
  7. string — Common string operations — Python 3.12...

    Source code: Lib/string.py String constants: The constants defined in this module are: Custom String Formatting: The built-in string class provides the ability to do complex variable substitutions ...
    docs.python.org/3/library/string.html
    Registered: Fri May 17 03:47:30 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 116.1K bytes
    - Viewed (0)
  8. decimal — Decimal fixed point and floating poin...

    Source code: Lib/decimal.py The decimal module provides support for fast correctly rounded decimal floating point arithmetic. It offers several advantages over the float datatype: Decimal “is based...
    docs.python.org/3/library/decimal.html
    Registered: Fri May 17 03:48:19 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 279.9K bytes
    - Viewed (0)
  9. unittest — Unit testing framework — Python 3.12...

    Source code: Lib/unittest/__init__.py(If you are already familiar with the basic concepts of testing, you might want to skip to the list of assert methods.) The unittest unit testing framework was ...
    docs.python.org/3/library/unittest.html
    Registered: Fri May 17 03:46:47 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 320.5K bytes
    - Viewed (1)
  10. operator — Standard operators as functions — Py...

    Source code: Lib/operator.py The operator module exports a set of efficient functions corresponding to the intrinsic operators of Python. For example, operator.add(x, y) is equivalent to the expres...
    docs.python.org/3/library/operator.html
    Registered: Fri May 17 03:47:02 UTC 2024
    - Last Modified: Wed May 15 18:07:32 UTC 2024
    - 114.1K bytes
    - Viewed (0)
Back to top