模块

作者: ThinkerLing | 来源:发表于2019-10-10 13:21 被阅读0次
    # 用import导入模块
    import math
    print(math.sqrt(16))  # => 4.0
    
    # 也可以从模块中导入个别值
    from math import ceil, floor
    print(ceil(3.7))  # => 4.0
    print(floor(3.7))   # => 3.0
    
    # 可以导入一个模块中所有值
    # 警告:不建议这么做
    from math import *
    
    # 如此缩写模块名字
    import math as m
    math.sqrt(16) == m.sqrt(16)   # => True
    
    # Python模块其实就是普通的Python文件。你可以自己写,然后导入,
    # 模块的名字就是文件的名字。
    
    # 你可以这样列出一个模块里所有的值
    import math
    dir(math)
    

    相关文章

      网友评论

        本文标题:模块

        本文链接:https://www.haomeiwen.com/subject/kxmopctx.html