不为别的,只为做一个连自己都羡慕的人

摘要: import random list = [20, 16, 10, 5]; random.shuffle(list) print "Reshuffled list : ", list; random.shuffle(list) print "Reshuffled list : ", list; 运行 阅读全文
posted @ 2021-10-26 17:48 升级打怪 阅读(651) 评论(0) 推荐(0) 编辑
摘要: from fastapi.staticfiles import StaticFiles app = FastAPI() # 挂载 app.mount("/static", StaticFiles(directory="static"), name="static") 安装 pip install a 阅读全文
posted @ 2021-10-26 17:23 升级打怪 阅读(191) 评论(0) 推荐(0) 编辑