最新 最热

Python2.7更新pip:Unico

1.首先更新pip版本的时候出现。这是出现在python2.7.16出现的问题2.进入你的pyhton目录下的Libmimetypes.py 打开它3.在import下面加入这代码if sys

2020-01-16
1

Python3 小技巧

每个文件头部都可以加入这个,或者放到用单独一个文件,再import *。其实都一样,只需要一行false=False;true=True;none=null=None;hid=lambda o:"0x%X"%id(o)

2020-01-16
1

周末学习笔记——day03(模块,包)

一,复习'''装饰器@wraper # fn = wraper(fn)def fn(): passdef wrap(arg): def outer(func): # 可以用arg def inner(*args, **kwargs): # 可...

2020-01-16
0

001 python excited

解释:import math是头文件的输入,我们调用PI必须加上所属库的名称来调用PI,例如math.pi;

2020-01-16
1

python xml.etree.El

We have a number of ways to import the data. Reading the file from disk:

2020-01-14
0

用 Python 实现的线程池

为了提高程序的效率,经常要用到多线程,尤其是IO等需要等待外部响应的部分。线程的创建、销毁和调度本身是有代价的,如果一个线程的任务相对简单,那这些时间和空间开销就不容忽视了,此时用线程池就是更好的选择,即创建一些线...

2020-01-14
1

python 文件内容对比操作

#-*-coding:utf-8-*- import re f1 = open('d:/test/mail/bounce_list.txt','r') f2 = open('d:/test/mail/828-820.txt', 'r') ff = open('d:/test/mail/ok1', ...

2020-01-13
1

python模块学习

系统相关的信息模块: import syssys.argv 是一个 list,包含所有的命令行参数. sys.stdout sys.stdin sys.stderr 分别表示标准输入输出,错误输出的文件对象. sys.stdin.readline() 从标准输入读一行 sys.stdout...

2020-01-13
1

Python之石头剪刀布

import random#根据输入参数显示对应结果while True:#获取输入参数play = int(input("请输入您得动作(0剪刀 1石头 2布 或退出程序 3):"))#电脑随机动作动作computer = random.randint(0, 2)...

2020-01-13
1

python3 - 多线程 - thre

from threading import Thread import threading from multiprocessing import Process import os def work(): import time time.sleep(3) print(threading.c...

2020-01-13
0