docs.python.org

Website:https://docs.python.org/3/
Upvotes received2
Downvotes received1
Karma:0 (upvotes-downvotes)



0 earned Badges

No badges were found



Definitions (108)

1

1 Thumbs up   0 Thumbs down

struct sequence


A tuple with named elements. Struct sequences expose an interface similar to named tuple in that elements can either be accessed either by index or as an attribute. However, they do not have any of th [..]
Source: docs.python.org

2

1 Thumbs up   0 Thumbs down

virtual environment


A cooperatively isolated runtime environment that allows Python users and applications to install and upgrade Python distribution packages without interfering with the behaviour of other Python applic [..]
Source: docs.python.org

3

0 Thumbs up   0 Thumbs down

>>>


The default Python prompt of the interactive shell. Often seen for code examples which can be executed interactively in the interpreter.
Source: docs.python.org

4

0 Thumbs up   0 Thumbs down


The default Python prompt of the interactive shell when entering code for an indented code block or within a pair of matching left and right delimiters (parentheses, square brackets or curly braces).
Source: docs.python.org

5

0 Thumbs up   0 Thumbs down

2to3


A tool that tries to convert Python 2.x code to Python 3.x code by handling most of the incompatibilities which can be detected by parsing the source and traversing the parse tree. 2to3 is available i [..]
Source: docs.python.org

6

0 Thumbs up   0 Thumbs down

abstract base class


Abstract base classes complement duck-typing by providing a way to define interfaces when other techniques like hasattr() would be clumsy or subtly wrong (for example with magic methods). ABCs introdu [..]
Source: docs.python.org

7

0 Thumbs up   0 Thumbs down

argument


A value passed to a function (or method) when calling the function. There are two kinds of argument: keyword argument: an argument preceded by an identifier (e.g. name=) in a function call or passed a [..]
Source: docs.python.org

8

0 Thumbs up   0 Thumbs down

asynchronous context manager


An object which controls the environment seen in an async with statement by defining __aenter__() and __aexit__() methods. Introduced by PEP 492.
Source: docs.python.org

9

0 Thumbs up   0 Thumbs down

asynchronous iterable


An object, that can be used in an async for statement. Must return an asynchronous iterator from its __aiter__() method. Introduced by PEP 492.
Source: docs.python.org

10

0 Thumbs up   0 Thumbs down

asynchronous iterator


An object that implements __aiter__() and __anext__() methods. __anext__ must return an awaitable object. async for resolves awaitable returned from asynchronous iterator’s __anext__() method until it [..]
Source: docs.python.org


To view all 108 definitions, please sign in.