摘要:
tabulate 1 # -*- coding:utf-8 -*- 2 from tabulate import tabulate 3 li_data = [['王信鑫', '27', '13478683345'], ['马纤羽', '34', '13744234523'], ['叶梓萱', '24 阅读全文
摘要:
用户 --> 相同的密码 --> 不同的md5 hash()值 -- >加点 salt 例如:库中的数据 {"id": 1000, "password": "5715073b5c60542dd47d0c11966e0621", "salt": "q<h5pL+_", "balance": 99251 阅读全文
摘要:
# -*- coding:utf-8 -*-# 考核# 1.有如下字符串:n = "路飞学城"(编程题)# - 将字符串转换成utf-8的字符编码的字节,再将转换的字节重新转换为utf-8的字符编码的字符串# - 将字符串转换成gbk的字符编码的字节,再将转换的字节重新转换为utf-8的字符编码的字 阅读全文
摘要:
lambda 的高级应用: 1 # CASE 1 2 fs = map(lambda i:(lambda j: i*j), range(6)) 3 print([f(2) for f in fs]) 4 5 # CASE 2 6 fs = [lambda j:i*j for i in range(6 阅读全文
摘要:
带参数的装饰器:@wraps() 1 import time 2 from functools import wraps 3 4 def time_fun(type): 5 def outter(func): 6 @wraps(func) #可以得到原始函数add的原始信息 7 def inner( 阅读全文