06 2022 档案
摘要:正则匹配邮箱格式 匹配指定后缀邮箱格式 import re email = input("Enter your email:\n") result = re.match(r".*@(163|qq|126|sohu)\.com",email) print(result) if result: prin
阅读全文
摘要:自定义滚动条样式 点击查看代码 .container { max-height: 200px; overflow-y: scroll; } .container::-webkit-scrollbar { width: 0.5em; background-color: white; } .contai
阅读全文
摘要:##rust入门 安装rust(win) 下载安装包 https://www.rust-lang.org/tools/install 查看版本 rustc --version cargo -v 其他 https://blog.csdn.net/yao_hou/article/details/1242
阅读全文
摘要:request的结构获取 class Upload(Resource): def post(self): print(curPath) print(request.files['file'].__dict__) print(' ') print(request.files.get('file')._
阅读全文

浙公网安备 33010602011771号