摘要:
isinstance() 判断某个对象是不是某个类的实例 issubclass() 是不是字类 class Student: def __init__(self,name,sex,age): self.name = name self.age = age self.sex = sex def stu 阅读全文
2018年12月21日
2018年12月13日
2018年12月6日
摘要:
import hashlib m=hashlib.md5() m.update('你好'.encode('utf8')) m.update('hello'.encoding('utf8')) print(m.hexdigest()) m=hashlib.sha512() m.update('你好'. 阅读全文
摘要:
常用的匹配模式: 正则表达式是根据一定的规则把字符串匹配处理 import re # msg='1-2*(60+((-40.35)/5)-(-4*3))' # print(re.findall('\D?(-?\d+\.?\d*)',msg)) print(re.findall('skye','sky 阅读全文
2018年12月4日
2018年11月28日
2018年11月27日
摘要:
一 函数的参数分为两大类: 1.形参:在定义函数时括号内指定的参数(变量名),称之为形参 2.实参:在调用函数时括号内传入的值(变量值),称之为实参 阅读全文
2018年11月26日
2018年11月23日
摘要:
以下两个场景下涉及到字符编码的问题: !!!总结非常重要的两点!!! unicode >encode >utf-8 utf-8 >decode >unicode 阅读全文