python模块整理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python模块整理相关的知识,希望对你有一定的参考价值。

一、time模块:import time

  1、time.sleep(3)   #单位为妙

 

 

二、urllib

  1、传递一个url地址得到其html内容:from urllib.request import urlopen

from  urllib.request  import urlopen
res = urlopen(‘http://crm.oldboyedu.com‘).read()   #打印出的是16进制
print(res.decode(‘utf-8‘))     #  转换为汉字

def index(url):
    def get():
        old_boy= urlopen(url).read()
        return old_boy
    return get

old_boy = index(‘http://crm.oldboyedu.com‘)  
print(old_boy.__closure__[0].cell_contents)   #每一个函数都有一个__closure__函数,如果是闭包函数,则其cell_contents方法返回闭包的值:http://crm.oldboyedu.com
print(old_boy().decode(‘utf-8‘))

 

 

以上是关于python模块整理的主要内容,如果未能解决你的问题,请参考以下文章

Python 常用系统模块整理

VS2015 代码片段整理

Python - 模块

python课堂整理23----模块介绍

模块整理笔记

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段