python时间操作

# 第一种方式,如果传入字符串时间 date1 = time.strptime('2018-08-16 01:28:33', "%Y-%m-%d %H:%M:%S") date2 = time....

Python 2018-11-17 1017

笔记-python面向对象(2)

1.继承: class Father: def eat(self): print('人要吃饭') def drink(self, name): self.name = name print('我...

Python 2018-07-28 999

使用opencv实现人脸识别

代码如下: import cv2 from PIL import Image casc_path = "C:\\Python36\\haarcascade_frontalface_default...

Python 2018-07-26 1001

笔记-python面向对象(1)

1.init: 作用:为类传递参数 class Person: def __init__(self, name, old): self.name = name self.old = old de...

Python 2018-07-26 937

python求解公约数

今天在一个地方看见一个人求助计算公约数的变式题,最关键的是计算最大公约数。发现自己完全不知道如何计算,太失败了,看来学的还不扎实。下面总结python的公约数求解。 1.递归 例如,求(319,...

Python 2018-07-15 1667