gpt4 book ai didi

python - 将标准库提取到方法文件

转载 作者:行者123 更新时间:2023-12-01 02:52:20 25 4
gpt4 key购买 nike

我需要为用其他语言编写的定制编辑器创建自动完成文件。有了关键字,就很简单:

>>> import keyword
>>> s = " ".join(keyword.kwlist)

但是不知道有没有类似的。如果没有,Python 团队是否会为其文档维护任何可解析的格式?

我所需要的只是函数的名称以及它可能需要的参数以及它实际功能的描述。其他详细信息(例如包名称等)也很不错。

例如Python有open function因此它将是:

名称:open()

签名:打开(文件,模式='r',缓冲=-1,编码=无,错误=无,换行=无,closefd = True,opener =无)

描述:打开文件并返回对应的文件对象。如果文件无法打开,则会引发 OSError...

我希望足够清楚。让我知道任何仍然不明确的地方。

最佳答案

根据您的问题,您希望在变量上显示一些信息。 Python 中的对象包含几个内置属性,您可以读取这些属性来获取此信息。

  1. __name__:提供对象的名称(请注意,如果对象没有此名称,它将引发 AttributeError

    >>> f = 5
    >>> f.__name__
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    AttributeError: 'int' object has no attribute '__name__'
  2. __doc__:提供有关对象的有用帮助文本。可能包含也可能不包含任何内容。

    >>> print(f.__doc__)
    int(x=0) -> integer
    int(x, base=10) -> integer

    Convert a number or string to an integer, or return 0 if no arguments
    are given. If x is a number, return x.__int__(). For floating point
    numbers, this truncates towards zero.

    If x is not a number or if base is given, then x must be a string,
    bytes, or bytearray instance representing an integer literal in the
    given base. The literal can be preceded by '+' or '-' and be surrounded
    by whitespace. The base defaults to 10. Valid bases are 0 and 2-36.
    Base 0 means to interpret the base from the string as an integer literal.
    >>> int('0b100', base=0)
    4
  3. dir(__builtins__):检索有关所有内置函数的信息。

    >>> dir(__builtins__)
    ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BufferError', 'BytesWarning', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError', 'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'ZeroDivisionError', '_', '__debug__', '__doc__', '__import__', '__name__', '__package__', 'abs', 'all', 'any', 'apply', 'basestring', 'bin', 'bool', 'buffer', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'cmp', 'coerce', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'execfile', 'exit', 'file', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'intern', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'long', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'raw_input', 'reduce', 'reload', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'unichr', 'unicode', 'vars', 'xrange', 'zip']

关于python - 将标准库提取到方法文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44614516/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com