zoukankan      html  css  js  c++  java
  • python:模块1——标准库简介

    一、文档

    windows系统:IDLE中打开帮助文档

    Tutorial:简单入门

    Library Reference:python内置函数和标准库(看不完的,当做字典来查)(此外还有pypi(拍派社区)有第三方模块)

    Language Reference:讨论Python的语法和设计哲学

    Python Howtos:针对一些特定的主题进行深入并且详细的探讨

    extending and embedding 用c/c++开发Python的扩展模块

    Python/C API上边需要的API(鱼c极客首选python中会讲)

    二、PEP

    每个PEP都有一个编号,这个编号给定就不会在改变

    三、如何使用模块

    例如:用计时器,需要模块timeit,

    第一种方法:文档

    然后在文档中索引<timeit>,一般timeit(module)就是我们需要的

    第二种方法:在交互界面

    >>>timeit.__doc__

    >>>print(timeit.__doc__)     有格式

    dir(timeit)                    所有属性和方法全都显示出来

    timeit.__all__               该模块可供外界调用的全部信息,并不是所有模块都有__all__属性

                                       使用from timeit import *来导入到命名空间时,只有__all__属性里的东西才会被导入

    help(timeit)                  比doc属性内容多一点,比官方文档简单一点

    timeit.__file__              显示源代码所在的位置

  • 相关阅读:
    17. Letter Combinations of a Phone Number
    16. 3Sum Closest
    15. 3Sum
    14. Longest Common Prefix
    13. Roman to Integer
    12. Integer to Roman
    11. Container With Most Water
    10. Regular Expression Matching
    9. Palindrome Number
    8. String to Integer (atoi)
  • 原文地址:https://www.cnblogs.com/daduryi/p/6828635.html
Copyright © 2011-2022 走看看