Python论坛  - 讨论区

标题:[python-chinese] 那里能找到python的内置函数表?

2007年03月25日 星期日 10:18

ebbstar ebbstar在126.com
星期日 三月 25 10:18:45 HKT 2007

不知道那里能找到 python 的内置函数表。
我觉得这个东西应该有用,但是怎么都找不到。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月25日 星期日 10:28

limodou limodou在gmail.com
星期日 三月 25 10:28:26 HKT 2007

On 3/25/07, ebbstar <ebbstar在126.com> wrote:
> 不知道那里能找到 python 的内置函数表。
> 我觉得这个东西应该有用,但是怎么都找不到。

python的文档啊。

-- 
I like python!
UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
My Blog: http://www.donews.net/limodou

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月25日 星期日 10:31

jessinio smith jessinio在gmail.com
星期日 三月 25 10:31:14 HKT 2007

dir(__builtins__)

On 3/25/07, ebbstar <ebbstar在126.com> wrote:
>
> ²»ÖªµÀÄÇÀïÄÜÕÒµ½ python µÄÄÚÖú¯Êý±í¡£
> ÎÒ¾õµÃÕâ¸ö¶«Î÷Ó¦¸ÃÓÐÓ㬵«ÊÇÔõô¶¼ÕÒ²»µ½¡£
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese




-- 
×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070325/a02d20ff/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月25日 星期日 14:27

eric glitch.wang在gmail.com
星期日 三月 25 14:27:37 HKT 2007

ebbstar wrote:
> 不知道那里能找到 python 的内置函数表。
> 我觉得这个东西应该有用,但是怎么都找不到。
>   
http://www.edgewall.org/python-sidebar/

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月26日 星期一 09:23

萝卜 ebbstar在126.com
星期一 三月 26 09:23:04 HKT 2007

python的文档只介绍了几个函数,没找到总表
dir(__builtins__)看起来不太...,有没有办法得到更详细的信息
>>> dir(__builtins__)
['ArithmeticError', 'AssertionError', 'AttributeError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FloatingPointError', 'FutureWarning', 'IOError', 'ImportError', 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'OverflowWarning', 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError', 'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '__debug__', '__doc__', '__import__', '__name__', 'abs', 'apply', 'basestring', 'bool', 'buffer', 'callable', 'chr', 'classmethod', 'cmp', 'coerce', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'execfile', 'exit', 'file', 'filter', 'float', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'intern', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'long', 'map', 'max', 'min', 'object', 'oct', 'open', 'ord', 'pow', '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']

>dir(__builtins__)
>
>On 3/25/07, ebbstar <ebbstar在126.com> wrote:
>>
>> 不知道那里能找到 python 的内置函数表。
>> 我觉得这个东西应该有用,但是怎么都找不到。
>> _______________________________________________
>> python-chinese
>> Post: send python-chinese在lists.python.cn
>> Subscribe: send subscribe to python-chinese-request在lists.python.cn
>> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
>> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
>
>
>-- 
>注意身体,身体是革命的本钱!!
>_______________________________________________
>python-chinese
>Post: send python-chinese在lists.python.cn
>Subscribe: send subscribe to python-chinese-request在lists.python.cn
>Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
>Detail Info: http://python.cn/mailman/listinfo/python-chinese

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月26日 星期一 09:32

jessinio smith jessinio在gmail.com
星期一 三月 26 09:32:49 HKT 2007

pythonµÄÎĵµÀï²»ÊÇÓÐÂï¡£ÏÂÔØ¿´¿´°É¡£windows°æµÄÓÐÒ»¸öchmÎļþ£¬ºÜºÃ¡£ÎÒ¾ÍÊÇÓÃËü

On 3/26/07, Âܲ· <ebbstar在126.com> wrote:
>
> pythonµÄÎĵµÖ»½éÉÜÁ˼¸¸öº¯Êý£¬Ã»ÕÒµ½×ܱí
> dir(__builtins__)¿´ÆðÀ´²»Ì«...£¬ÓÐûÓа취µÃµ½¸üÏêϸµÄÐÅÏ¢
> >>> dir(__builtins__)
> ['ArithmeticError', 'AssertionError', 'AttributeError',
> 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError',
> 'Exception', 'False', 'FloatingPointError', 'FutureWarning', 'IOError',
> 'ImportError', 'IndentationError', 'IndexError', 'KeyError',
> 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None',
> 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError',
> 'OverflowWarning', 'PendingDeprecationWarning', 'ReferenceError',
> 'RuntimeError', 'RuntimeWarning', 'StandardError', 'StopIteration',
> 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError',
> 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError',
> 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError',
> 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError',
> '__debug__', '__doc__', '__import__', '__name__', 'abs', 'apply',
> 'basestring', 'bool', 'buffer', 'callable', 'chr', 'classmethod', 'cmp',
> 'coerce', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict',
> 'dir', 'divmod', 'enumerate', 'eval', 'execfile', 'exit', 'file', 'filter',
> 'float', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help',
> 'hex', 'id', 'input', 'int', 'intern', 'isinstance', 'issubclass', 'iter',
> 'len', 'license', 'list', 'locals', 'long', 'map', 'max', 'min', 'object',
> 'oct', 'open', 'ord', 'pow', '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']
>
> >dir(__builtins__)
> >
> >On 3/25/07, ebbstar <ebbstar在126.com> wrote:
> >>
> >> ²»ÖªµÀÄÇÀïÄÜÕÒµ½ python µÄÄÚÖú¯Êý±í¡£
> >> ÎÒ¾õµÃÕâ¸ö¶«Î÷Ó¦¸ÃÓÐÓ㬵«ÊÇÔõô¶¼ÕÒ²»µ½¡£
> >> _______________________________________________
> >> python-chinese
> >> Post: send python-chinese在lists.python.cn
> >> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> >> Unsubscribe: send unsubscribe to
> python-chinese-request在lists.python.cn
> >> Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> >
> >--
> >×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡
> >_______________________________________________
> >python-chinese
> >Post: send python-chinese在lists.python.cn
> >Subscribe: send subscribe to python-chinese-request在lists.python.cn
> >Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> >Detail Info: http://python.cn/mailman/listinfo/python-chinese
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese




-- 
×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070326/fde27c9d/attachment-0001.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号