摘要:
import base64file_path = r'xxx'with open(file_path, 'rb') as f: data = f.read() b64_byte = base64.b64encode(data) # 使用b64对类字节对象进行编码,但是结果还是byte类型 b64_s 阅读全文
摘要:
mysql表中 1 表名没有app名做前缀 class Meta: db_table = '英文表名' verbose_name_plural = '中文表名' 2 表名有app名做前缀 class Meta: verbose_name = '中文表名' verbose_name_plural = 阅读全文
摘要:
一、安装及cmd中使用 1 下载软件(包含服务端和客户端) - 从官网找安装包 下载后 文件 redis-server.exe 就是服务端. 文件 redis-cli.exe 是客户端. 2 在cmd中启动服务端 在当前窗口中运行cmd, 输入redis-serve 为了方便,可以把redis目录加 阅读全文
摘要:
code import os import time from concurrent.futures.thread import ThreadPoolExecutor def test(n): print(f'n:{n}-os.getpid:{os.getpid()}') time.sleep(2) 阅读全文
摘要:
code import os import time from concurrent.futures.process import ProcessPoolExecutor def test(n): print(f'n:{n}-os.getpid:{os.getpid()}') time.sleep( 阅读全文
摘要:
这个报错 等价于 "jack"(), 即给字符串加了括号让执行. 按照这个思路解决问题 阅读全文
摘要:
import jsonclass Animal(object): def __init__(self): self.name = 'tom' def __repr__(self): return f'my name is {self.name}&i like apple'd1 = { 'county 阅读全文
摘要:
res = divmod(101, 10)print(f'res:{res}') # res:(10, 1) 阅读全文